UNPKG

onshape-clients

Version:

The meta package for creating the various Onshape clients

73 lines (66 loc) 1.81 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 BTMetricParams { 'systemId'?: string; 'propertyMap'?: { [key: string]: any; }; 'eventName'?: string; 'eventNamespace'?: string; 'eventTime'?: Date; 'documentId'?: string; 'elementId'?: string; 'eventType'?: number; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "systemId", "baseName": "systemId", "type": "string" }, { "name": "propertyMap", "baseName": "propertyMap", "type": "{ [key: string]: any; }" }, { "name": "eventName", "baseName": "eventName", "type": "string" }, { "name": "eventNamespace", "baseName": "eventNamespace", "type": "string" }, { "name": "eventTime", "baseName": "eventTime", "type": "Date" }, { "name": "documentId", "baseName": "documentId", "type": "string" }, { "name": "elementId", "baseName": "elementId", "type": "string" }, { "name": "eventType", "baseName": "eventType", "type": "number" } ]; static getAttributeTypeMap() { return BTMetricParams.attributeTypeMap; } }