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§
§§§§§§
readonly additional Fields?: { ... }§
readonly all Day?: booleanWhether the event lasts all day or not
readonly binary Property Name?: stringThe field that your iCalendar file will be available under in the output Default: "data"
readonly end?: stringDate and time at which the event ends. (For all-day events, the time will be ignored.).
readonly operation?: "createEventFile"Default: "createEventFile"
readonly start?: stringDate and time at which the event begins. (For all-day events, the time will be ignored.).
readonly title?: string
Default: {}