Module GapiCalendarV3Model.EventAttendee

type t = {
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.

*)
comment : string;(*

The attendee's response comment. Optional.

*)
optional : bool;(*

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

*)
id : string;(*

The attendee's Profile ID, if available.

*)
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. Required when adding an attendee.

*)
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.
*)
additionalGuests : int;(*

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

*)
organizer : bool;(*

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

*)
self : bool;(*

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

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