package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiCalendarV3Model.FreeBusyResponseSource

Sourcetype t = {
  1. timeMin : GapiDate.t;
    (*

    The start of the interval.

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

    The end of the interval.

    *)
  3. calendars : (string * FreeBusyCalendar.t) list;
    (*

    List of free/busy information for calendars.

    *)
  4. groups : (string * FreeBusyGroup.t) list;
    (*

    Expansion of groups.

    *)
  5. kind : string;
    (*

    Type of the resource ("calendar#freeBusy").

    *)
}
Sourceval timeMin : (t, GapiDate.t) GapiLens.t
Sourceval timeMax : (t, GapiDate.t) GapiLens.t
Sourceval calendars : (t, (string * FreeBusyCalendar.t) list) GapiLens.t
Sourceval groups : (t, (string * FreeBusyGroup.t) list) GapiLens.t
Sourceval kind : (t, string) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t