package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val get : ?base_url:string -> ?etag:string -> ?std_params:GapiService.StandardParameters.t -> ?custom_headers:GapiCore.Header.t list -> setting:string -> GapiConversation.Session.t -> GapiCalendarV3Model.Setting.t * GapiConversation.Session.t

Returns a single user setting.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/calendar/v3/").

  • parameter etag

    Optional ETag.

  • parameter std_params

    Optional standard parameters.

  • parameter custom_headers

    Optional HTTP custom headers.

  • parameter setting

    The id of the user setting.

val watch : ?base_url:string -> ?std_params:GapiService.StandardParameters.t -> ?custom_headers:GapiCore.Header.t list -> ?pageToken:string -> ?maxResults:int -> ?syncToken:string -> GapiCalendarV3Model.Channel.t -> GapiConversation.Session.t -> GapiCalendarV3Model.Channel.t * GapiConversation.Session.t

Watch for changes to Settings resources.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/calendar/v3/").

  • parameter std_params

    Optional standard parameters.

  • parameter custom_headers

    Optional HTTP custom headers.

  • parameter pageToken

    Token specifying which result page to return. Optional.

  • parameter 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.

  • parameter 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 list : ?base_url:string -> ?std_params:GapiService.StandardParameters.t -> ?custom_headers:GapiCore.Header.t list -> ?syncToken:string -> ?maxResults:int -> ?pageToken:string -> GapiConversation.Session.t -> GapiCalendarV3Model.Settings.t * GapiConversation.Session.t

Returns all user settings for the authenticated user.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/calendar/v3/").

  • parameter std_params

    Optional standard parameters.

  • parameter custom_headers

    Optional HTTP custom headers.

  • parameter 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.

  • parameter 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.

  • parameter pageToken

    Token specifying which result page to return. Optional.