UNPKG

onshape-clients

Version:

The meta package for creating the various Onshape clients

97 lines (90 loc) 2.38 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 BTBillingPlanParams { 'name'?: string; 'description'?: string; 'group'?: string; 'planId'?: string; 'clientId'?: string; 'interval'?: string; 'consumableQuantity'?: number; 'trialPeriodDays'?: number; 'amountCents'?: number; 'hidden'?: boolean; 'applicationId'?: string; 'planType'?: number; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "name", "baseName": "name", "type": "string" }, { "name": "description", "baseName": "description", "type": "string" }, { "name": "group", "baseName": "group", "type": "string" }, { "name": "planId", "baseName": "planId", "type": "string" }, { "name": "clientId", "baseName": "clientId", "type": "string" }, { "name": "interval", "baseName": "interval", "type": "string" }, { "name": "consumableQuantity", "baseName": "consumableQuantity", "type": "number" }, { "name": "trialPeriodDays", "baseName": "trialPeriodDays", "type": "number" }, { "name": "amountCents", "baseName": "amountCents", "type": "number" }, { "name": "hidden", "baseName": "hidden", "type": "boolean" }, { "name": "applicationId", "baseName": "applicationId", "type": "string" }, { "name": "planType", "baseName": "planType", "type": "number" } ]; static getAttributeTypeMap() { return BTBillingPlanParams.attributeTypeMap; } }