2022-08-17 08:50:24 -07:00
|
|
|
import { IDataObject } from 'n8n-workflow';
|
2020-03-13 18:22:36 -07:00
|
|
|
|
|
|
|
export interface IReminder {
|
|
|
|
useDefault?: boolean;
|
|
|
|
overrides?: IDataObject[];
|
|
|
|
}
|
|
|
|
|
2020-10-22 23:00:00 -07:00
|
|
|
export interface IConferenceData {
|
|
|
|
createRequest?: {
|
2022-08-17 08:50:24 -07:00
|
|
|
requestId: string;
|
2020-10-22 23:00:00 -07:00
|
|
|
conferenceSolution: {
|
2022-08-17 08:50:24 -07:00
|
|
|
type: string;
|
|
|
|
};
|
2020-10-22 23:00:00 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-03-13 18:22:36 -07:00
|
|
|
export interface IEvent {
|
|
|
|
attendees?: IDataObject[];
|
|
|
|
colorId?: string;
|
|
|
|
description?: string;
|
|
|
|
end?: IDataObject;
|
|
|
|
guestsCanInviteOthers?: boolean;
|
|
|
|
guestsCanModify?: boolean;
|
|
|
|
guestsCanSeeOtherGuests?: boolean;
|
|
|
|
id?: string;
|
|
|
|
location?: string;
|
|
|
|
maxAttendees?: number;
|
|
|
|
recurrence?: string[];
|
|
|
|
reminders?: IReminder;
|
|
|
|
sendUpdates?: string;
|
|
|
|
start?: IDataObject;
|
|
|
|
summary?: string;
|
|
|
|
transparency?: string;
|
|
|
|
visibility?: string;
|
2020-10-22 23:00:00 -07:00
|
|
|
conferenceData?: IConferenceData;
|
2020-03-13 18:22:36 -07:00
|
|
|
}
|