src/gsuite/calendar/event-properties.model.ts
Extended properties of the event.
private |
private: |
Type : void
|
Properties that are private to the copy of the event that appears on this calendar. |
shared |
shared: |
Type : void
|
Properties that are shared between copies of the event on other attendees' calendars. |
export interface EventProperties {
/**
* Properties that are private to the copy of the event that appears on this calendar.
*/
private: {
[key: string]: string;
};
/**
* Properties that are shared between copies of the event on other attendees' calendars.
*/
shared: {
[key: string]: string;
};
}