Module GapiCalendarV3Service.SettingsResource

module SettingsResource: sig .. end

val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
setting:string ->
GapiConversation.Session.t ->
GapiCalendarV3Model.Setting.t * GapiConversation.Session.t
Returns a single user setting.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/calendar/v3/").
etag : Optional ETag.
std_params : Optional standard parameters.
setting : The id of the user setting.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?maxResults:int ->
?pageToken:string ->
?syncToken:string ->
GapiConversation.Session.t ->
GapiCalendarV3Model.Settings.t * GapiConversation.Session.t
Returns all user settings for the authenticated user.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/calendar/v3/").
std_params : Optional standard parameters.
maxResults : Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional.
pageToken : Token specifying which result page to return. Optional.
syncToken : Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then. If the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken. Learn more about incremental synchronization. Optional. The default is to return all entries.
val watch : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?maxResults:int ->
?pageToken:string ->
?syncToken:string ->
GapiCalendarV3Model.Channel.t ->
GapiConversation.Session.t ->
GapiCalendarV3Model.Channel.t * GapiConversation.Session.t
Watch for changes to Settings resources.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/calendar/v3/").
std_params : Optional standard parameters.
maxResults : Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional.
pageToken : Token specifying which result page to return. Optional.
syncToken : Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then. If the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken. Learn more about incremental synchronization. Optional. The default is to return all entries.