Add Google Calendar conference link (#1085)

This commit is contained in:
Ricardo Espinoza
2020-10-23 02:00:00 -04:00
committed by GitHub
parent b04769287d
commit 5eb65f8721
3 changed files with 92 additions and 0 deletions

View File

@@ -7,6 +7,15 @@ export interface IReminder {
overrides?: IDataObject[];
}
export interface IConferenceData {
createRequest?: {
requestId: string,
conferenceSolution: {
type: string,
}
};
}
export interface IEvent {
attendees?: IDataObject[];
colorId?: string;
@@ -25,4 +34,5 @@ export interface IEvent {
summary?: string;
transparency?: string;
visibility?: string;
conferenceData?: IConferenceData;
}