@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
42 lines • 910 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AnnotationData = void 0;
/**
* A single annotation resource.
*/
class AnnotationData {
constructor() { }
/**
* @ignore
*/
static getAttributeTypeMap() {
return AnnotationData.attributeTypeMap;
}
}
exports.AnnotationData = AnnotationData;
/**
* @ignore
*/
AnnotationData.attributeTypeMap = {
attributes: {
baseName: "attributes",
type: "AnnotationAttributes",
required: true,
},
id: {
baseName: "id",
type: "string",
required: true,
format: "uuid",
},
type: {
baseName: "type",
type: "AnnotationType",
required: true,
},
additionalProperties: {
baseName: "additionalProperties",
type: "{ [key: string]: any; }",
},
};
//# sourceMappingURL=AnnotationData.js.map