Class PartnerAppRequestInfo
Information about a request from an online partner app
Namespace: SuperOffice.WebApi
Assembly: SoCore.dll
Syntax
public class PartnerAppRequestInfo : Object
Constructors
PartnerAppRequestInfo()
Information about a request from an online partner app
Declaration
public PartnerAppRequestInfo()
Properties
ClientId
Client id as string. Formerly also referred to as Application Identifier
Declaration
public string ClientId { get; set; }
Property Value
Type | Description |
---|---|
String |
ClientName
Name of the partner application
Declaration
public string ClientName { get; set; }
Property Value
Type | Description |
---|---|
String |
DeveloperPortalId
Primary key of the app in the developer portal
Declaration
public int DeveloperPortalId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
ExcludeFromInvoice
Is this called excluded from invocing (usage cost)
Declaration
public bool ExcludeFromInvoice { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
IsCustomCRMScript
Is the operation called by a custom CRM Script. Value is null if no info is provided
Declaration
public Nullable<bool> IsCustomCRMScript { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Boolean> |
LogAllRequestsUntil
Log all requests to Application Insights until this utc-time. This means that the request will be voted to be sampled in when logging to Application Insights.
Declaration
public Nullable<DateTime> LogAllRequestsUntil { get; set; }
Property Value
Type | Description |
---|---|
Nullable<DateTime> |
Method
Operation method called on the agent
Declaration
public string Method { get; set; }
Property Value
Type | Description |
---|---|
String |
OnlineAppId
Primary key of the app in the database OnlineApp table
Declaration
public int OnlineAppId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
OwnerName
Name of the partner owning the application
Declaration
public string OwnerName { get; set; }
Property Value
Type | Description |
---|---|
String |
Service
AService or agent name
Declaration
public string Service { get; set; }
Property Value
Type | Description |
---|---|
String |
Extension Methods
EnumUtil.MapEnums<From, To>(From)