package gapi-ocaml

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

    A plain text displayable name for this user.

    *)
  2. emailAddress : string;
    (*

    The email address of the user. This may not be present in certain contexts if the user has not made their email address visible to the requester.

    *)
  3. kind : string;
    (*

    Identifies what kind of resource this is. Value: the fixed string "drive#user".

    *)
  4. me : bool;
    (*

    Whether this user is the requesting user.

    *)
  5. permissionId : string;
    (*

    The user's ID as visible in Permission resources.

    *)
}
val displayName : (t, string) GapiLens.t
val emailAddress : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val me : (t, bool) GapiLens.t
val permissionId : (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