@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
41 lines • 923 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CaseLink = void 0;
/**
* A directional link representing a relationship between two entities. At least one entity must be a case.
*/
class CaseLink {
constructor() { }
/**
* @ignore
*/
static getAttributeTypeMap() {
return CaseLink.attributeTypeMap;
}
}
exports.CaseLink = CaseLink;
/**
* @ignore
*/
CaseLink.attributeTypeMap = {
attributes: {
baseName: "attributes",
type: "CaseLinkAttributes",
required: true,
},
id: {
baseName: "id",
type: "string",
required: true,
},
type: {
baseName: "type",
type: "CaseLinkResourceType",
required: true,
},
additionalProperties: {
baseName: "additionalProperties",
type: "{ [key: string]: any; }",
},
};
//# sourceMappingURL=CaseLink.js.map