Module GapiDriveV2Model.User

module User: sig .. end

module Picture: sig .. end
type t = {
   displayName : string; (*
A plain text displayable name for this user.
*)
   emailAddress : string; (*
The email address of the user.
*)
   isAuthenticatedUser : bool; (*
Whether this user is the same as the authenticated user for whom the request was made.
*)
   kind : string; (*
This is always drive#user.
*)
   permissionId : string; (*
The user's ID as visible in the permissions collection.
*)
   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