package gapi-ocaml

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

Module GapiCalendarV3Model.CreateConferenceRequestSource

Sourcetype t = {
  1. status : ConferenceRequestStatus.t;
    (*

    The status of the conference create request.

    *)
  2. requestId : string;
    (*

    The client-generated unique ID for this request. Clients should regenerate this ID for every new request. If an ID provided is the same as for the previous request, the request is ignored.

    *)
  3. conferenceSolutionKey : ConferenceSolutionKey.t;
    (*

    The conference solution, such as Hangouts or Google Meet.

    *)
}
Sourceval requestId : (t, string) GapiLens.t
Sourceval conferenceSolutionKey : (t, ConferenceSolutionKey.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