UNPKG

onshape-clients

Version:

The meta package for creating the various Onshape clients

67 lines (60 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 BTMoveElementInfo { 'newDocumentVersionId'?: string; 'newDocumentName'?: string; 'newWorkspaceId'?: string; 'errorMessage'?: string; 'newDocumentId'?: string; 'elementOriginalToNewMap'?: { [key: string]: string; }; 'isNewDocument'?: boolean; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "newDocumentVersionId", "baseName": "newDocumentVersionId", "type": "string" }, { "name": "newDocumentName", "baseName": "newDocumentName", "type": "string" }, { "name": "newWorkspaceId", "baseName": "newWorkspaceId", "type": "string" }, { "name": "errorMessage", "baseName": "errorMessage", "type": "string" }, { "name": "newDocumentId", "baseName": "newDocumentId", "type": "string" }, { "name": "elementOriginalToNewMap", "baseName": "elementOriginalToNewMap", "type": "{ [key: string]: string; }" }, { "name": "isNewDocument", "baseName": "isNewDocument", "type": "boolean" } ]; static getAttributeTypeMap() { return BTMoveElementInfo.attributeTypeMap; } }