package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. displayName : string;
    (*

    The creator's name, if available.

    *)
  2. email : string;
    (*

    The creator's email address, if available.

    *)
  3. id : string;
    (*

    The creator's Profile ID, if available. It corresponds to the id field in the People collection of the Google+ API

    *)
  4. self : bool;
    (*

    Whether the creator 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