@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
66 lines • 1.59 kB
JavaScript
/**
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2020-Present Datadog, Inc.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.IncidentTypeAttributes = void 0;
/**
* Incident type's attributes.
*/
class IncidentTypeAttributes {
constructor() { }
/**
* @ignore
*/
static getAttributeTypeMap() {
return IncidentTypeAttributes.attributeTypeMap;
}
}
exports.IncidentTypeAttributes = IncidentTypeAttributes;
/**
* @ignore
*/
IncidentTypeAttributes.attributeTypeMap = {
createdAt: {
baseName: "createdAt",
type: "Date",
format: "date-time",
},
createdBy: {
baseName: "createdBy",
type: "string",
},
description: {
baseName: "description",
type: "string",
},
isDefault: {
baseName: "is_default",
type: "boolean",
},
lastModifiedBy: {
baseName: "lastModifiedBy",
type: "string",
},
modifiedAt: {
baseName: "modifiedAt",
type: "Date",
format: "date-time",
},
name: {
baseName: "name",
type: "string",
required: true,
},
prefix: {
baseName: "prefix",
type: "string",
},
additionalProperties: {
baseName: "additionalProperties",
type: "{ [key: string]: any; }",
},
};
//# sourceMappingURL=IncidentTypeAttributes.js.map
;