Interface IDataAlertCreate

interface IDataAlertCreate {
    appId: string;
    bookmarkId: string;
    conditionId: string;
    description?: string;
    enabled?: boolean;
    name: string;
    recipients: IDataAlertRecipients;
    scheduleOptions?: IDataAlertScheduleOptions;
    sheetId?: string;
    throttling?: IDataAlertThrottlingResource;
    triggerType: "RELOAD" | "SCHEDULED";
}

Properties

appId: string
bookmarkId: string
conditionId: string
description?: string
enabled?: boolean
name: string
scheduleOptions?: IDataAlertScheduleOptions
sheetId?: string
triggerType: "RELOAD" | "SCHEDULED"