UNPKG

onshape-clients

Version:

The meta package for creating the various Onshape clients

85 lines (78 loc) 2.15 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 BTBoundingBoxParams { 'partQuery'?: string; 'partId'?: string; 'includeWireBodies'?: boolean; 'displayStateId'?: string; 'elementMicroversionId'?: string; 'includeHidden'?: boolean; 'documentId'?: string; 'workspaceId'?: string; 'elementId'?: string; 'sketchId'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "partQuery", "baseName": "partQuery", "type": "string" }, { "name": "partId", "baseName": "partId", "type": "string" }, { "name": "includeWireBodies", "baseName": "includeWireBodies", "type": "boolean" }, { "name": "displayStateId", "baseName": "displayStateId", "type": "string" }, { "name": "elementMicroversionId", "baseName": "elementMicroversionId", "type": "string" }, { "name": "includeHidden", "baseName": "includeHidden", "type": "boolean" }, { "name": "documentId", "baseName": "documentId", "type": "string" }, { "name": "workspaceId", "baseName": "workspaceId", "type": "string" }, { "name": "elementId", "baseName": "elementId", "type": "string" }, { "name": "sketchId", "baseName": "sketchId", "type": "string" } ]; static getAttributeTypeMap() { return BTBoundingBoxParams.attributeTypeMap; } }