Module Event.Organizer

type t = {
self : bool;(*

Whether the organizer corresponds to the calendar on which this copy of the event appears. Read-only. The default is False.

*)
email : string;(*

The organizer's email address, if available. It must be a valid email address as per RFC5322.

*)
id : string;(*

The organizer's Profile ID, if available.

*)
displayName : string;(*

The organizer's name, if available.

*)
}
val self : ( t, bool ) GapiLens.t
val email : ( t, string ) GapiLens.t
val id : ( t, string ) GapiLens.t
val displayName : ( t, string ) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t