UNPKG

onshape-clients

Version:

The meta package for creating the various Onshape clients

73 lines (66 loc) 1.69 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 BTAddressInfo { 'id'?: string; 'state'?: string; 'address'?: string; 'zip'?: string; 'country'?: string; 'city'?: string; 'stateCode'?: string; 'countryCode'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "id", "baseName": "id", "type": "string" }, { "name": "state", "baseName": "state", "type": "string" }, { "name": "address", "baseName": "address", "type": "string" }, { "name": "zip", "baseName": "zip", "type": "string" }, { "name": "country", "baseName": "country", "type": "string" }, { "name": "city", "baseName": "city", "type": "string" }, { "name": "stateCode", "baseName": "stateCode", "type": "string" }, { "name": "countryCode", "baseName": "countryCode", "type": "string" } ]; static getAttributeTypeMap() { return BTAddressInfo.attributeTypeMap; } }