UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

88 lines (87 loc) 2.39 kB
/** * 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 { IssueLanguage } from "./IssueLanguage"; import { IssuePlatform } from "./IssuePlatform"; import { IssueState } from "./IssueState"; import { AttributeTypeMap } from "../../datadog-api-client-common/util"; /** * Object containing the information of an issue. */ export declare class IssueAttributes { /** * Error message associated with the issue. */ "errorMessage"?: string; /** * Type of the error that matches the issue. */ "errorType"?: string; /** * Path of the file where the issue occurred. */ "filePath"?: string; /** * Timestamp of the first seen error in milliseconds since the Unix epoch. */ "firstSeen"?: number; /** * The application version (for example, git commit hash) where the issue was first observed. */ "firstSeenVersion"?: string; /** * Name of the function where the issue occurred. */ "functionName"?: string; /** * Error is a crash. */ "isCrash"?: boolean; /** * Array of programming languages associated with the issue. */ "languages"?: Array<IssueLanguage>; /** * Timestamp of the last seen error in milliseconds since the Unix epoch. */ "lastSeen"?: number; /** * The application version (for example, git commit hash) where the issue was last observed. */ "lastSeenVersion"?: string; /** * Platform associated with the issue. */ "platform"?: IssuePlatform; /** * Service name. */ "service"?: string; /** * State of the issue */ "state"?: IssueState; /** * 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(); }