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