onshape-clients
Version:
The meta package for creating the various Onshape clients
74 lines (67 loc) • 1.82 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 { Entry } from './entry';
export class BTRbacPermissionSchemeInfo {
'entries'?: Array<Entry>;
'active'?: boolean;
'predefinedPermissionScheme'?: number;
'description'?: string;
'name'?: string;
'id'?: string;
'href'?: string;
'viewRef'?: string;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "entries",
"baseName": "entries",
"type": "Array<Entry>"
},
{
"name": "active",
"baseName": "active",
"type": "boolean"
},
{
"name": "predefinedPermissionScheme",
"baseName": "predefinedPermissionScheme",
"type": "number"
},
{
"name": "description",
"baseName": "description",
"type": "string"
},
{
"name": "name",
"baseName": "name",
"type": "string"
},
{
"name": "id",
"baseName": "id",
"type": "string"
},
{
"name": "href",
"baseName": "href",
"type": "string"
},
{
"name": "viewRef",
"baseName": "viewRef",
"type": "string"
} ];
static getAttributeTypeMap() {
return BTRbacPermissionSchemeInfo.attributeTypeMap;
}
}