module Userinfoplus:sig..end
type t = {
|
email : |
(* |
The user's email address.
| *) |
|
family_name : |
(* |
The user's last name.
| *) |
|
gender : |
(* |
The user's gender.
| *) |
|
given_name : |
(* |
The user's first name.
| *) |
|
hd : |
(* |
The hosted domain e.g. example.com if the user is Google apps user.
| *) |
|
id : |
(* |
The obfuscated ID of the user.
| *) |
|
link : |
(* |
URL of the profile page.
| *) |
|
locale : |
(* |
The user's preferred locale.
| *) |
|
name : |
(* |
The user's full name.
| *) |
|
picture : |
(* |
URL of the user's picture image.
| *) |
|
verified_email : |
(* |
Boolean flag which is true if the email address is verified. Always verified because we only return the user's primary email address.
| *) |
val email : (t, string) GapiLens.t
val family_name : (t, string) GapiLens.t
val gender : (t, string) GapiLens.t
val given_name : (t, string) GapiLens.t
val hd : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val link : (t, string) GapiLens.t
val locale : (t, string) GapiLens.t
val name : (t, string) GapiLens.t
val picture : (t, string) GapiLens.t
val verified_email : (t, bool) 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