interface Alert {
    acknowledged: boolean;
    channelExternalId?: string;
    channelId: number;
    closed: boolean;
    externalId?: string;
    id: number;
    level?:
        | "DEBUG"
        | "INFO"
        | "WARNING"
        | "ERROR"
        | "CRITICAL";
    metadata?: Metadata;
    source: string;
    status: AlertStatus;
    timestamp: Timestamp;
    value?: string;
}

Properties

acknowledged: boolean
channelExternalId?: string
channelId: number
closed: boolean
externalId?: string
id: number
level?:
    | "DEBUG"
    | "INFO"
    | "WARNING"
    | "ERROR"
    | "CRITICAL"
metadata?: Metadata
source: string
status: AlertStatus
timestamp: Timestamp
value?: string