UNPKG

@datadog/datadog-api-client

Version:
41 lines 923 B
"use strict"; 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