module EventAttendee:sig..end
type t = {
|
additionalGuests : |
(* |
Number of additional guests. Optional. The default is 0.
| *) |
|
comment : |
(* |
The attendee's response comment. Optional.
| *) |
|
displayName : |
(* |
The attendee's name, if available. Optional.
| *) |
|
email : |
(* |
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 : |
(* |
The attendee's Profile ID, if available. It corresponds to theid field in the People collection of the Google+ API
| *) |
|
optional : |
(* |
Whether this is an optional attendee. Optional. The default is False.
| *) |
|
organizer : |
(* |
Whether the attendee is the organizer of the event. Read-only. The default is False.
| *) |
|
resource : |
(* |
Whether the attendee is a resource. Read-only. The default is False.
| *) |
|
responseStatus : |
(* |
The attendee's response status. Possible values are:
| *) |
|
self : |
(* |
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