package gapi-ocaml

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

    Maximal number of calendars for which FreeBusy information is to be provided. Optional. Maximum value is 50.

    *)
  2. groupExpansionMax : int;
    (*

    Maximal number of calendar identifiers to be provided for a single group. Optional. An error is returned for a group with more members than this value. Maximum value is 100.

    *)
  3. items : FreeBusyRequestItem.t list;
    (*

    List of calendars and/or groups to query.

    *)
  4. timeMax : GapiDate.t;
    (*

    The end of the interval for the query formatted as per RFC3339.

    *)
  5. timeMin : GapiDate.t;
    (*

    The start of the interval for the query formatted as per RFC3339.

    *)
  6. timeZone : string;
    (*

    Time zone used in the response. Optional. The default is UTC.

    *)
}
val calendarExpansionMax : (t, int) GapiLens.t
val groupExpansionMax : (t, int) GapiLens.t
val items : (t, FreeBusyRequestItem.t list) GapiLens.t
val timeMax : (t, GapiDate.t) GapiLens.t
val timeMin : (t, GapiDate.t) GapiLens.t
val timeZone : (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