UNPKG

onshape-clients

Version:

The meta package for creating the various Onshape clients

133 lines (126 loc) 3.46 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 BTAPIApplicationParams { 'hiddenFromPlusMenu'?: boolean; 'name'?: string; 'state'?: number; 'description'?: string; 'baseHref'?: string; 'supportsCollaboration'?: boolean; 'developerId'?: string; 'redirectURLs'?: Array<string>; 'primaryFormat'?: string; 'uiSpec'?: string; 'supportsMerge'?: boolean; 'adminTeamId'?: string; 'hiddenFromPlusMenu'?: boolean; 'developerEmail'?: string; 'internalGrantOnDemand'?: boolean; 'clientId'?: string; 'scopeNames'?: Array<string>; 'storeEntryIsPublic'?: boolean; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "hiddenFromPlusMenu", "baseName": "hiddenFromPlusMenu_", "type": "boolean" }, { "name": "name", "baseName": "name", "type": "string" }, { "name": "state", "baseName": "state", "type": "number" }, { "name": "description", "baseName": "description", "type": "string" }, { "name": "baseHref", "baseName": "baseHref", "type": "string" }, { "name": "supportsCollaboration", "baseName": "supportsCollaboration", "type": "boolean" }, { "name": "developerId", "baseName": "developerId", "type": "string" }, { "name": "redirectURLs", "baseName": "redirectURLs", "type": "Array<string>" }, { "name": "primaryFormat", "baseName": "primaryFormat", "type": "string" }, { "name": "uiSpec", "baseName": "uiSpec", "type": "string" }, { "name": "supportsMerge", "baseName": "supportsMerge", "type": "boolean" }, { "name": "adminTeamId", "baseName": "adminTeamId", "type": "string" }, { "name": "hiddenFromPlusMenu", "baseName": "hiddenFromPlusMenu", "type": "boolean" }, { "name": "developerEmail", "baseName": "developerEmail", "type": "string" }, { "name": "internalGrantOnDemand", "baseName": "internalGrantOnDemand", "type": "boolean" }, { "name": "clientId", "baseName": "clientId", "type": "string" }, { "name": "scopeNames", "baseName": "scopeNames", "type": "Array<string>" }, { "name": "storeEntryIsPublic", "baseName": "storeEntryIsPublic", "type": "boolean" } ]; static getAttributeTypeMap() { return BTAPIApplicationParams.attributeTypeMap; } }