onshape-clients
Version:
The meta package for creating the various Onshape clients
73 lines (66 loc) • 1.76 kB
text/typescript
/**
* 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 BTUserActivationParams {
'id'?: string;
'password'?: string;
'firstName'?: string;
'lastName'?: string;
'email'?: string;
'defaultCompanyName'?: string;
'role'?: number;
'phoneNumber'?: string;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "id",
"baseName": "id",
"type": "string"
},
{
"name": "password",
"baseName": "password",
"type": "string"
},
{
"name": "firstName",
"baseName": "firstName",
"type": "string"
},
{
"name": "lastName",
"baseName": "lastName",
"type": "string"
},
{
"name": "email",
"baseName": "email",
"type": "string"
},
{
"name": "defaultCompanyName",
"baseName": "defaultCompanyName",
"type": "string"
},
{
"name": "role",
"baseName": "role",
"type": "number"
},
{
"name": "phoneNumber",
"baseName": "phoneNumber",
"type": "string"
} ];
static getAttributeTypeMap() {
return BTUserActivationParams.attributeTypeMap;
}
}