onshape-clients
Version:
The meta package for creating the various Onshape clients
110 lines (103 loc) • 2.73 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 { Content } from './content';
export class BTInAppMessageParams {
'name'?: string;
'context'?: number;
'content'?: Array<Content>;
'description'?: string;
'contentType'?: number;
'startDate'?: Date;
'endDate'?: Date;
'ruleId'?: string;
'lookerQuery'?: number;
'populationTaskId'?: string;
'billingPlanIds'?: Array<string>;
'domainType'?: number;
'showOnce'?: boolean;
'displayOrder'?: number;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "name",
"baseName": "name",
"type": "string"
},
{
"name": "context",
"baseName": "context",
"type": "number"
},
{
"name": "content",
"baseName": "content",
"type": "Array<Content>"
},
{
"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"
} ];
static getAttributeTypeMap() {
return BTInAppMessageParams.attributeTypeMap;
}
}