UNPKG

@datadog/datadog-api-client

Version:
41 lines 1.01 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CaseWatcher = void 0; /** * Represents a user who is subscribed to notifications for a case. Watchers receive updates when the case's status, priority, assignee, or comments change. */ class CaseWatcher { constructor() { } /** * @ignore */ static getAttributeTypeMap() { return CaseWatcher.attributeTypeMap; } } exports.CaseWatcher = CaseWatcher; /** * @ignore */ CaseWatcher.attributeTypeMap = { id: { baseName: "id", type: "string", required: true, }, relationships: { baseName: "relationships", type: "CaseWatcherRelationships", required: true, }, type: { baseName: "type", type: "CaseWatcherResourceType", required: true, }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }", }, }; //# sourceMappingURL=CaseWatcher.js.map