UNPKG

onshape-clients

Version:

The meta package for creating the various Onshape clients

109 lines (102 loc) 2.65 kB
/** * 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. */ export class BTInAppMessageContentItem { 'contentId'?: string; 'title'?: string; 'template'?: string; 'thumbnail'?: string; 'link'?: string; 'height'?: number; 'width'?: number; 'player'?: string; 'pausePoints'?: Array<number>; 'position'?: string; 'itemTitle'?: string; 'verticalOffset'?: number; 'horizontalOffset'?: number; 'anchor'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "contentId", "baseName": "contentId", "type": "string" }, { "name": "title", "baseName": "title", "type": "string" }, { "name": "template", "baseName": "template", "type": "string" }, { "name": "thumbnail", "baseName": "thumbnail", "type": "string" }, { "name": "link", "baseName": "link", "type": "string" }, { "name": "height", "baseName": "height", "type": "number" }, { "name": "width", "baseName": "width", "type": "number" }, { "name": "player", "baseName": "player", "type": "string" }, { "name": "pausePoints", "baseName": "pausePoints", "type": "Array<number>" }, { "name": "position", "baseName": "position", "type": "string" }, { "name": "itemTitle", "baseName": "itemTitle", "type": "string" }, { "name": "verticalOffset", "baseName": "verticalOffset", "type": "number" }, { "name": "horizontalOffset", "baseName": "horizontalOffset", "type": "number" }, { "name": "anchor", "baseName": "anchor", "type": "string" } ]; static getAttributeTypeMap() { return BTInAppMessageContentItem.attributeTypeMap; } }