onshape-clients
Version:
The meta package for creating the various Onshape clients
133 lines (126 loc) • 3.68 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 BTWebClientCapabilitiesParams {
'oesStandardDerivatives'?: boolean;
'vendor'?: string;
'depthTexture'?: boolean;
'renderer'?: string;
'angleInstancedArrays'?: boolean;
'extTextureFilterAnisotropic'?: boolean;
'oesElementIndexUint'?: boolean;
'oesTextureFloat'?: boolean;
'oesTextureFloatLinear'?: boolean;
'oesTextureHalfFloat'?: boolean;
'oesTextureHalfFloatLinear'?: boolean;
'oesVertexArrayObject'?: boolean;
'compressedTextureS3tc'?: boolean;
'drawBuffers'?: boolean;
'has3dMouse'?: boolean;
'screenWidth'?: number;
'screenHeight'?: number;
'devicePixelRatio'?: number;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "oesStandardDerivatives",
"baseName": "oesStandardDerivatives_",
"type": "boolean"
},
{
"name": "vendor",
"baseName": "vendor",
"type": "string"
},
{
"name": "depthTexture",
"baseName": "depthTexture",
"type": "boolean"
},
{
"name": "renderer",
"baseName": "renderer",
"type": "string"
},
{
"name": "angleInstancedArrays",
"baseName": "angleInstancedArrays",
"type": "boolean"
},
{
"name": "extTextureFilterAnisotropic",
"baseName": "extTextureFilterAnisotropic",
"type": "boolean"
},
{
"name": "oesElementIndexUint",
"baseName": "oesElementIndexUint",
"type": "boolean"
},
{
"name": "oesTextureFloat",
"baseName": "oesTextureFloat",
"type": "boolean"
},
{
"name": "oesTextureFloatLinear",
"baseName": "oesTextureFloatLinear",
"type": "boolean"
},
{
"name": "oesTextureHalfFloat",
"baseName": "oesTextureHalfFloat",
"type": "boolean"
},
{
"name": "oesTextureHalfFloatLinear",
"baseName": "oesTextureHalfFloatLinear",
"type": "boolean"
},
{
"name": "oesVertexArrayObject",
"baseName": "oesVertexArrayObject",
"type": "boolean"
},
{
"name": "compressedTextureS3tc",
"baseName": "compressedTextureS3tc",
"type": "boolean"
},
{
"name": "drawBuffers",
"baseName": "drawBuffers",
"type": "boolean"
},
{
"name": "has3dMouse",
"baseName": "has3dMouse",
"type": "boolean"
},
{
"name": "screenWidth",
"baseName": "screenWidth",
"type": "number"
},
{
"name": "screenHeight",
"baseName": "screenHeight",
"type": "number"
},
{
"name": "devicePixelRatio",
"baseName": "devicePixelRatio",
"type": "number"
} ];
static getAttributeTypeMap() {
return BTWebClientCapabilitiesParams.attributeTypeMap;
}
}