onshape-clients
Version:
The meta package for creating the various Onshape clients
103 lines (96 loc) • 2.61 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 BTDocumentParams {
'name'?: string;
'generateUnknownMessages'?: boolean;
'isEmptyContent'?: boolean;
'description'?: string;
'tags'?: Array<string>;
'ownerType'?: number;
'ownerId'?: string;
'projectId'?: string;
'parentId'?: string;
'betaCapabilityIds'?: Array<string>;
'isPublic'?: boolean;
'notRevisionManaged'?: boolean;
'ownerEmail'?: string;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "name",
"baseName": "name",
"type": "string"
},
{
"name": "generateUnknownMessages",
"baseName": "generateUnknownMessages",
"type": "boolean"
},
{
"name": "isEmptyContent",
"baseName": "isEmptyContent",
"type": "boolean"
},
{
"name": "description",
"baseName": "description",
"type": "string"
},
{
"name": "tags",
"baseName": "tags",
"type": "Array<string>"
},
{
"name": "ownerType",
"baseName": "ownerType",
"type": "number"
},
{
"name": "ownerId",
"baseName": "ownerId",
"type": "string"
},
{
"name": "projectId",
"baseName": "projectId",
"type": "string"
},
{
"name": "parentId",
"baseName": "parentId",
"type": "string"
},
{
"name": "betaCapabilityIds",
"baseName": "betaCapabilityIds",
"type": "Array<string>"
},
{
"name": "isPublic",
"baseName": "isPublic",
"type": "boolean"
},
{
"name": "notRevisionManaged",
"baseName": "notRevisionManaged",
"type": "boolean"
},
{
"name": "ownerEmail",
"baseName": "ownerEmail",
"type": "string"
} ];
static getAttributeTypeMap() {
return BTDocumentParams.attributeTypeMap;
}
}