src/gsuite/calendar/event-source.model.ts
Source from which an event was created. For example, a web page, an email message or any document identifiable by an URL with HTTP or HTTPS scheme.
title |
title: |
Type : void
|
Defined in src/gsuite/calendar/event-source.model.ts:13
|
Title of the source; for example a title of a web page or an email subject. |
url |
url: |
Type : void
|
Defined in src/gsuite/calendar/event-source.model.ts:9
|
URL of the source pointing to a resource. The URL scheme must be HTTP or HTTPS. |
export interface EventSource {
/**
* URL of the source pointing to a resource. The URL scheme must be HTTP or HTTPS.
*/
url: string;
/**
* Title of the source; for example a title of a web page or an email subject.
*/
title: string
}