onshape-clients
Version:
The meta package for creating the various Onshape clients
134 lines (127 loc) • 3.34 kB
text/typescript
/**
* Onshape REST API
* The Onshape REST API consumed by all clients.
*
* OpenAPI spec version: 1.93
* Contact: api-support@onshape.zendesk.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { BTInAppMessageContent } from './bTInAppMessageContent';
export class BTInAppMessageInfo {
'context'?: number;
'content'?: Array<BTInAppMessageContent>;
'description'?: string;
'contentType'?: number;
'startDate'?: Date;
'endDate'?: Date;
'ruleId'?: string;
'lookerQuery'?: number;
'populationTaskId'?: string;
'billingPlanIds'?: Array<string>;
'domainType'?: number;
'showOnce'?: boolean;
'displayOrder'?: number;
'contentIndex'?: number;
'name'?: string;
'id'?: string;
'href'?: string;
'viewRef'?: string;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "context",
"baseName": "context",
"type": "number"
},
{
"name": "content",
"baseName": "content",
"type": "Array<BTInAppMessageContent>"
},
{
"name": "description",
"baseName": "description",
"type": "string"
},
{
"name": "contentType",
"baseName": "contentType",
"type": "number"
},
{
"name": "startDate",
"baseName": "startDate",
"type": "Date"
},
{
"name": "endDate",
"baseName": "endDate",
"type": "Date"
},
{
"name": "ruleId",
"baseName": "ruleId",
"type": "string"
},
{
"name": "lookerQuery",
"baseName": "lookerQuery",
"type": "number"
},
{
"name": "populationTaskId",
"baseName": "populationTaskId",
"type": "string"
},
{
"name": "billingPlanIds",
"baseName": "billingPlanIds",
"type": "Array<string>"
},
{
"name": "domainType",
"baseName": "domainType",
"type": "number"
},
{
"name": "showOnce",
"baseName": "showOnce",
"type": "boolean"
},
{
"name": "displayOrder",
"baseName": "displayOrder",
"type": "number"
},
{
"name": "contentIndex",
"baseName": "contentIndex",
"type": "number"
},
{
"name": "name",
"baseName": "name",
"type": "string"
},
{
"name": "id",
"baseName": "id",
"type": "string"
},
{
"name": "href",
"baseName": "href",
"type": "string"
},
{
"name": "viewRef",
"baseName": "viewRef",
"type": "string"
} ];
static getAttributeTypeMap() {
return BTInAppMessageInfo.attributeTypeMap;
}
}