@mendix/extensions-api - v0.9.0
    Preparing search index...

    Interface ScheduledEvent

    A unit is a container of elements, it can not contain other units.

    interface ScheduledEvent {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "ScheduledEvents$ScheduledEvent";
        $UnitID?: string;
        documentation: string;
        enabled: boolean;
        excluded: boolean;
        exportLevel: ExportLevel;
        interval: number;
        intervalType: IntervalType;
        microflow: null | string;
        name: string;
        onOverlap: OverlapStrategy;
        schedule: null | Schedule;
        startDateTime: string;
        timeZone: TimeZoneEnum;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "ScheduledEvents$ScheduledEvent"

    The type of the element.

    $UnitID?: string
    documentation: string
    enabled: boolean
    excluded: boolean
    exportLevel: ExportLevel
    interval: number
    intervalType: IntervalType
    microflow: null | string
    name: string
    onOverlap: OverlapStrategy
    schedule: null | Schedule
    startDateTime: string
    timeZone: TimeZoneEnum