module User:sig..end
type t = {
|
displayName : |
(* |
A plain text displayable name for this user.
| *) |
|
emailAddress : |
(* |
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.
| *) |
|
kind : |
(* |
Identifies what kind of resource this is. Value: the fixed string "drive#user".
| *) |
|
me : |
(* |
Whether this user is the requesting user.
| *) |
|
permissionId : |
(* |
The user's ID as visible in Permission resources.
| *) |
|
photoLink : |
(* |
A link to the user's profile photo, if available.
| *) |
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 photoLink : (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