Module GapiPlusV1Model.PlusAclentryResource

type t = {
displayName : string;

A descriptive name for this entry. Suitable for display.

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.

_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