package gapi-ocaml

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

    Number of additional guests. Optional. The default is 0.

    *)
  2. comment : string;
    (*

    The attendee's response comment. Optional.

    *)
  3. displayName : string;
    (*

    The attendee's name, if available. Optional.

    *)
  4. email : string;
    (*

    The attendee's email address, if available. This field must be present when adding an attendee. It must be a valid email address as per RFC5322. Required when adding an attendee.

    *)
  5. id : string;
    (*

    The attendee's Profile ID, if available. It corresponds to the id field in the People collection of the Google+ API

    *)
  6. optional : bool;
    (*

    Whether this is an optional attendee. Optional. The default is False.

    *)
  7. organizer : bool;
    (*

    Whether the attendee is the organizer of the event. Read-only. The default is False.

    *)
  8. resource : bool;
    (*

    Whether the attendee is a resource. Can only be set when the attendee is added to the event for the first time. Subsequent modifications are ignored. Optional. The default is False.

    *)
  9. responseStatus : string;
    (*

    The attendee's response status. Possible values are:

    • "needsAction" - The attendee has not responded to the invitation.
    • "declined" - The attendee has declined the invitation.
    • "tentative" - The attendee has tentatively accepted the invitation.
    • "accepted" - The attendee has accepted the invitation.
    *)
  10. self : bool;
    (*

    Whether this entry represents the calendar on which this copy of the event appears. Read-only. The default is False.

    *)
}
val additionalGuests : (t, int) GapiLens.t
val comment : (t, string) GapiLens.t
val displayName : (t, string) GapiLens.t
val email : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val optional : (t, bool) GapiLens.t
val organizer : (t, bool) GapiLens.t
val resource : (t, bool) GapiLens.t
val responseStatus : (t, string) GapiLens.t
val self : (t, bool) 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