onshape-clients
Version:
The meta package for creating the various Onshape clients
98 lines (91 loc) • 2.64 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.
*/
import { BTStandardContentCustomParameterDefinitionId } from './bTStandardContentCustomParameterDefinitionId';
export class BTStandardContentCustomParameterDefinition {
'id'?: BTStandardContentCustomParameterDefinitionId;
'name'?: string;
'description'?: string;
'createdBy'?: string;
'createdAt'?: Date;
'modifiedBy'?: string;
'modifiedAt'?: Date;
'parameterType'?: number;
'parameterValue'?: string;
'isDrivingConfiguration'?: boolean;
'parameterLinkType'?: number;
'_new'?: boolean;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "id",
"baseName": "id",
"type": "BTStandardContentCustomParameterDefinitionId"
},
{
"name": "name",
"baseName": "name",
"type": "string"
},
{
"name": "description",
"baseName": "description",
"type": "string"
},
{
"name": "createdBy",
"baseName": "createdBy",
"type": "string"
},
{
"name": "createdAt",
"baseName": "createdAt",
"type": "Date"
},
{
"name": "modifiedBy",
"baseName": "modifiedBy",
"type": "string"
},
{
"name": "modifiedAt",
"baseName": "modifiedAt",
"type": "Date"
},
{
"name": "parameterType",
"baseName": "parameterType",
"type": "number"
},
{
"name": "parameterValue",
"baseName": "parameterValue",
"type": "string"
},
{
"name": "isDrivingConfiguration",
"baseName": "isDrivingConfiguration",
"type": "boolean"
},
{
"name": "parameterLinkType",
"baseName": "parameterLinkType",
"type": "number"
},
{
"name": "_new",
"baseName": "new",
"type": "boolean"
} ];
static getAttributeTypeMap() {
return BTStandardContentCustomParameterDefinition.attributeTypeMap;
}
}