src/gsuite/calendar/event-person.model.ts
displayName |
displayName: |
Type : void
|
Defined in src/gsuite/calendar/event-person.model.ts:13
|
The creator's name, if available. |
email: |
Type : void
|
Defined in src/gsuite/calendar/event-person.model.ts:9
|
The creator's email address, if available. |
id |
id: |
Type : void
|
Defined in src/gsuite/calendar/event-person.model.ts:5
|
The creator's Profile ID, if available. It corresponds to theid field in the People collection of the Google+ API. |
self |
self: |
Type : void
|
Defined in src/gsuite/calendar/event-person.model.ts:17
|
Whether the creator corresponds to the calendar on which this copy of the event appears. Read-only. The default is False. |
export interface EventPerson {
/**
* The creator's Profile ID, if available. It corresponds to theid field in the People collection of the Google+ API.
*/
id: string;
/**
* The creator's email address, if available.
*/
email: string;
/**
* The creator's name, if available.
*/
displayName: string;
/**
* Whether the creator corresponds to the calendar on which this copy of the event appears. Read-only. The default is False.
*/
self: boolean
}