UNPKG

onshape-clients

Version:

The meta package for creating the various Onshape clients

67 lines (60 loc) 1.7 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 BTIdentityManagementParams { 'name'?: string; 'metadataMustBeSigned'?: boolean; 'enabled'?: boolean; 'providerType'?: number; 'idpCertificate'?: string; 'idpEntityId'?: string; 'idpRedirectURL'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "name", "baseName": "name", "type": "string" }, { "name": "metadataMustBeSigned", "baseName": "metadataMustBeSigned", "type": "boolean" }, { "name": "enabled", "baseName": "enabled", "type": "boolean" }, { "name": "providerType", "baseName": "providerType", "type": "number" }, { "name": "idpCertificate", "baseName": "idpCertificate", "type": "string" }, { "name": "idpEntityId", "baseName": "idpEntityId", "type": "string" }, { "name": "idpRedirectURL", "baseName": "idpRedirectURL", "type": "string" } ]; static getAttributeTypeMap() { return BTIdentityManagementParams.attributeTypeMap; } }