Interface ICalendarNodeParameters

Source
interface ICalendarNodeParameters {
    additionalFields?: {
        attendeesUi?: {
            attendeeValues: {
                email: string;
                name: string;
                rsvp?: boolean;
            }[];
        };
        busyStatus?: "BUSY"
        | "TENTATIVE";
        calName?: string;
        description?: string;
        fileName?: string;
        geolocationUi?: {
            geolocationValues: { lat?: string; lon?: string };
        };
        location?: string;
        organizerUi?: {
            organizerValues: { email: string; name: string };
        };
        recurrenceRule?: string;
        sequence?: number;
        status?: "TENTATIVE"
        | "CONFIRMED"
        | "CANCELLED";
        uid?: string;
        url?: string;
        useWorkflowTimezone?: boolean;
    };
    allDay?: boolean;
    binaryPropertyName?: string;
    end?: string;
    operation?: "createEventFile";
    start?: string;
    title?: string;
}

Properties§

Source§

readonly additionalFields?: {
    attendeesUi?: {
        attendeeValues: {
            email: string;
            name: string;
            rsvp?: boolean;
        }[];
    };
    busyStatus?: "BUSY"
    | "TENTATIVE";
    calName?: string;
    description?: string;
    fileName?: string;
    geolocationUi?: {
        geolocationValues: { lat?: string; lon?: string };
    };
    location?: string;
    organizerUi?: {
        organizerValues: { email: string; name: string };
    };
    recurrenceRule?: string;
    sequence?: number;
    status?: "TENTATIVE"
    | "CONFIRMED"
    | "CANCELLED";
    uid?: string;
    url?: string;
    useWorkflowTimezone?: boolean;
}

Default: {}

Source§

readonly allDay?: boolean

Whether the event lasts all day or not

Source§

readonly binaryPropertyName?: string

The field that your iCalendar file will be available under in the output Default: "data"

Source§

readonly end?: string

Date and time at which the event ends. (For all-day events, the time will be ignored.).

Source§

readonly operation?: "createEventFile"

Default: "createEventFile"

Source§

readonly start?: string

Date and time at which the event begins. (For all-day events, the time will be ignored.).

Source§

readonly title?: string