package gapi-ocaml

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

    A descriptive name for this entry. Suitable for display.

    *)
  2. id : string;
    (*

    The ID of the entry. For entries of type "person" or "circle", this is the ID of the resource. For other types, this property is not set.

    *)
  3. _type : string;
    (*

    The type of entry describing to whom access is granted. Possible values are:

    • "person" - Access to an individual.
    • "circle" - Access to members of a circle.
    • "myCircles" - Access to members of all the person's circles.
    • "extendedCircles" - Access to members of all the person's circles, plus all of the people in their circles.
    • "domain" - Access to members of the person's Google Apps domain.
    • "public" - Access to anyone on the web.
    *)
}
val displayName : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val _type : (t, string) 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