package gapi-ocaml

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

    A plain text displayable name for this user.

    *)
  2. emailAddress : string;
    (*

    The email address of the user.

    *)
  3. isAuthenticatedUser : bool;
    (*

    Whether this user is the same as the authenticated user for whom the request was made.

    *)
  4. kind : string;
    (*

    This is always drive#user.

    *)
  5. permissionId : string;
    (*

    The user's ID as visible in the permissions collection.

    *)
  6. picture : Picture.t;
    (*

    The user's profile picture.

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