UNPKG

onshape-clients

Version:

The meta package for creating the various Onshape clients

92 lines (85 loc) 2.32 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. */ import { BTPropertyValueParam } from './bTPropertyValueParam'; export class BTReleasePackageItemParams { 'properties'?: Array<BTPropertyValueParam>; 'id'?: string; 'partId'?: string; 'configuration'?: string; 'versionId'?: string; 'documentId'?: string; 'workspaceId'?: string; 'elementId'?: string; 'isIncluded'?: boolean; 'href'?: string; 'partNumber'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "properties", "baseName": "properties", "type": "Array<BTPropertyValueParam>" }, { "name": "id", "baseName": "id", "type": "string" }, { "name": "partId", "baseName": "partId", "type": "string" }, { "name": "configuration", "baseName": "configuration", "type": "string" }, { "name": "versionId", "baseName": "versionId", "type": "string" }, { "name": "documentId", "baseName": "documentId", "type": "string" }, { "name": "workspaceId", "baseName": "workspaceId", "type": "string" }, { "name": "elementId", "baseName": "elementId", "type": "string" }, { "name": "isIncluded", "baseName": "isIncluded", "type": "boolean" }, { "name": "href", "baseName": "href", "type": "string" }, { "name": "partNumber", "baseName": "partNumber", "type": "string" } ]; static getAttributeTypeMap() { return BTReleasePackageItemParams.attributeTypeMap; } }