onshape-clients
Version:
The meta package for creating the various Onshape clients
48 lines (41 loc) • 1.3 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 BTCommentNotificationParams {
'commentId'?: string;
'action'?: BTCommentNotificationParams.ActionEnum;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "commentId",
"baseName": "commentId",
"type": "string"
},
{
"name": "action",
"baseName": "action",
"type": "BTCommentNotificationParams.ActionEnum"
} ];
static getAttributeTypeMap() {
return BTCommentNotificationParams.attributeTypeMap;
}
}
export namespace BTCommentNotificationParams {
export enum ActionEnum {
CREATED = <any> 'CREATED',
UPDATED = <any> 'UPDATED',
DELETED = <any> 'DELETED',
RESOLVED = <any> 'RESOLVED',
REOPENED = <any> 'REOPENED',
REPLIED = <any> 'REPLIED',
UNKNOWN = <any> 'UNKNOWN'
}
}