Module GapiCalendarV3Model.EventAttendee

module EventAttendee: sig .. end

type t = {
   additionalGuests : int; (*
Number of additional guests. Optional. The default is 0.
*)
   comment : string; (*
The attendee's response comment. Optional.
*)
   displayName : string; (*
The attendee's name, if available. Optional.
*)
   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.
*)
   id : string; (*
The attendee's Profile ID, if available. It corresponds to theid field in the People collection of the Google+ API
*)
   optional : bool; (*
Whether this is an optional attendee. Optional. The default is False.
*)
   organizer : bool; (*
Whether the attendee is the organizer of the event. Read-only. The default is False.
*)
   resource : bool; (*
Whether the attendee is a resource. Read-only. The default is False.
*)
   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.

*)
   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