Type Alias AlertingRecipientStats

type AlertingRecipientStats = {
    conditionStatus?: "OK" | "FAILED";
    enabled: boolean;
    errors?: AlertingRecipientStatsErrors;
    groups?: string[];
    lastScan?: string;
    lastTrigger?: string;
    subscribed?: boolean;
    type?: "userid";
    value?: string;
}
Index

Properties

conditionStatus?: "OK" | "FAILED"
enabled: boolean

Whether the recipient is enabled.

groups?: string[]

A list of associated groups. If a user is added individually the "addedIndividually" pseudo group is included

lastScan?: string

last time a trigger was detected, but not sure if executed

lastTrigger?: string

last time an execution had been created

subscribed?: boolean

Whether the recipient is subscribed.

type?: "userid"
value?: string