Type Alias AlertingTaskCreateRequest

a alerting task (a definition on an alert)

type AlertingTaskCreateRequest = {
    appId: string;
    bookmarkId?: string;
    conditionId: string;
    description?: string;
    enabled?: boolean;
    name: string;
    recipients: Recipients;
    scheduleOptions?: ScheduleOptions;
    sheetId?: string;
    throttling?: ThrottlingResource;
    triggerType: "RELOAD" | "SCHEDULED";
}
Index

Properties

appId: string

appId associated to this alert definition

bookmarkId?: string
conditionId: string
description?: string
enabled?: boolean
name: string
recipients: Recipients
scheduleOptions?: ScheduleOptions
sheetId?: string
throttling?: ThrottlingResource
triggerType: "RELOAD" | "SCHEDULED"