Calendar Link object
This is an object representing the link to a user's configured personal scheduling pages. A user may have one or more calendars set up, each with its own unique URL.
The Calendar Link schema
json
{
"email": "",
"calendars": [
{
"url": "",
"name": "",
"isPrimary": true
},
{
"url": "",
"name": "",
"isPrimary": false
}
]
}
Fields
email string
The email address of the calendar owner.
calendars list
A list of all the calendars configured by the user.
child attributes
Attribute | Type | Description |
---|---|---|
url | string | Unique web address of the individual calendar. |
name | string | The calendar's name. |
isPrimary | boolean | Flag indicating if the calendar is the user's default calendar. |