onshape-clients
Version:
The meta package for creating the various Onshape clients
69 lines (62 loc) • 1.7 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 { Contact } from './contact';
import { License } from './license';
export class Info {
'title'?: string;
'description'?: string;
'termsOfService'?: string;
'contact'?: Contact;
'license'?: License;
'version'?: string;
'extensions'?: { [key: string]: any; };
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "title",
"baseName": "title",
"type": "string"
},
{
"name": "description",
"baseName": "description",
"type": "string"
},
{
"name": "termsOfService",
"baseName": "termsOfService",
"type": "string"
},
{
"name": "contact",
"baseName": "contact",
"type": "Contact"
},
{
"name": "license",
"baseName": "license",
"type": "License"
},
{
"name": "version",
"baseName": "version",
"type": "string"
},
{
"name": "extensions",
"baseName": "extensions",
"type": "{ [key: string]: any; }"
} ];
static getAttributeTypeMap() {
return Info.attributeTypeMap;
}
}