@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
38 lines • 981 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CaseViewRelationships = void 0;
/**
* Related resources for the case view, including the creator, last modifier, and associated project.
*/
class CaseViewRelationships {
constructor() { }
/**
* @ignore
*/
static getAttributeTypeMap() {
return CaseViewRelationships.attributeTypeMap;
}
}
exports.CaseViewRelationships = CaseViewRelationships;
/**
* @ignore
*/
CaseViewRelationships.attributeTypeMap = {
createdBy: {
baseName: "created_by",
type: "NullableUserRelationship",
},
modifiedBy: {
baseName: "modified_by",
type: "NullableUserRelationship",
},
project: {
baseName: "project",
type: "ProjectRelationship",
},
additionalProperties: {
baseName: "additionalProperties",
type: "{ [key: string]: any; }",
},
};
//# sourceMappingURL=CaseViewRelationships.js.map