package gapi-ocaml

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

Module GapiCalendarV3Model.EventDateTimeSource

Sourcetype t = {
  1. timeZone : string;
    (*

    The time zone in which the time is specified. (Formatted as an IANA Time Zone Database name, e.g. "Europe/Zurich".) For recurring events this field is required and specifies the time zone in which the recurrence is expanded. For single events this field is optional and indicates a custom time zone for the event start/end.

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

    The date, in the format "yyyy-mm-dd", if this is an all-day event.

    *)
  3. dateTime : GapiDate.t;
    (*

    The time, as a combined date-time value (formatted according to RFC3339). A time zone offset is required unless a time zone is explicitly specified in timeZone.

    *)
}
Sourceval timeZone : (t, string) GapiLens.t
Sourceval dateTime : (t, GapiDate.t) 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