module Organizer:sig..end
type t = {
|
displayName : |
(* |
The organizer's name, if available.
| *) |
|
email : |
(* |
The organizer's email address, if available. It must be a valid email address as per RFC5322.
| *) |
|
id : |
(* |
The organizer's Profile ID, if available. It corresponds to theid field in the People collection of the Google+ API
| *) |
|
self : |
(* |
Whether the organizer corresponds to the calendar on which this copy of the event appears. Read-only. The default is False.
| *) |
val displayName : (t, string) GapiLens.t
val email : (t, string) GapiLens.t
val id : (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