interface SupportedTrigger {
    defaultPollingInterval?: number;
    notificationType?: string;
    supportedCapabilities?: { [key: string]: SupportLevel };
    type?: DefinitionTriggerType;
}

Properties

defaultPollingInterval?: number

The default interval to wait between polls (only relevant when NotificationType is Polling).

notificationType?: string

How the trigger is notified of changes.

supportedCapabilities?: { [key: string]: SupportLevel }

The capabilities supported by this trigger.

The type of trigger.