@datadog/datadog-api-client
Version:
OpenAPI client for Datadog APIs
93 lines (92 loc) • 2.21 kB
TypeScript
/**
* 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.
*/
import { CasePriority } from "./CasePriority";
import { CaseStatus } from "./CaseStatus";
import { IssueCaseInsight } from "./IssueCaseInsight";
import { IssueCaseJiraIssue } from "./IssueCaseJiraIssue";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
* Object containing the information of a case.
*/
export declare class IssueCaseAttributes {
/**
* Timestamp of when the case was archived.
*/
"archivedAt"?: Date;
/**
* Timestamp of when the case was closed.
*/
"closedAt"?: Date;
/**
* Timestamp of when the case was created.
*/
"createdAt"?: Date;
/**
* Source of the case creation.
*/
"creationSource"?: string;
/**
* Description of the case.
*/
"description"?: string;
/**
* Due date of the case.
*/
"dueDate"?: string;
/**
* Insights of the case.
*/
"insights"?: Array<IssueCaseInsight>;
/**
* Jira issue of the case.
*/
"jiraIssue"?: IssueCaseJiraIssue;
/**
* Key of the case.
*/
"key"?: string;
/**
* Timestamp of when the case was last modified.
*/
"modifiedAt"?: Date;
/**
* Case priority
*/
"priority"?: CasePriority;
/**
* Case status
*/
"status"?: CaseStatus;
/**
* Title of the case.
*/
"title"?: string;
/**
* Type of the case.
*/
"type"?: string;
/**
* A container for additional, undeclared properties.
* This is a holder for any undeclared properties as specified with
* the 'additionalProperties' keyword in the OAS document.
*/
"additionalProperties"?: {
[key: string]: any;
};
/**
* @ignore
*/
"_unparsed"?: boolean;
/**
* @ignore
*/
static readonly attributeTypeMap: AttributeTypeMap;
/**
* @ignore
*/
static getAttributeTypeMap(): AttributeTypeMap;
constructor();
}