package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. etag : string;
    (*

    ETag of the collection.

    *)
  2. items : CalendarListEntry.t list;
    (*

    Calendars that are present on the user's calendar list.

    *)
  3. kind : string;
    (*

    Type of the collection ("calendar#calendarList").

    *)
  4. nextPageToken : string;
    (*

    Token used to access the next page of this result. Omitted if no further results are available, in which case nextSyncToken is provided.

    *)
  5. nextSyncToken : string;
    (*

    Token used at a later point in time to retrieve only the entries that have changed since this result was returned. Omitted if further results are available, in which case nextPageToken is provided.

    *)
}
val etag : (t, string) GapiLens.t
val items : (t, CalendarListEntry.t list) GapiLens.t
val kind : (t, string) GapiLens.t
val nextPageToken : (t, string) GapiLens.t
val nextSyncToken : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t