package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiOauth2V2Model.UserinfoplusSource

Sourcetype t = {
  1. email : string;
    (*

    The user's email address.

    *)
  2. family_name : string;
    (*

    The user's last name.

    *)
  3. gender : string;
    (*

    The user's gender.

    *)
  4. given_name : string;
    (*

    The user's first name.

    *)
  5. hd : string;
    (*

    The hosted domain e.g. example.com if the user is Google apps user.

    *)
  6. id : string;
    (*

    The obfuscated ID of the user.

    *)
  7. locale : string;
    (*

    The user's preferred locale.

    *)
  8. name : string;
    (*

    The user's full name.

    *)
  9. picture : string;
    (*

    URL of the user's picture image.

    *)
  10. verified_email : bool;
    (*

    Boolean flag which is true if the email address is verified. Always verified because we only return the user's primary email address.

    *)
}
Sourceval email : (t, string) GapiLens.t
Sourceval family_name : (t, string) GapiLens.t
Sourceval gender : (t, string) GapiLens.t
Sourceval given_name : (t, string) GapiLens.t
Sourceval hd : (t, string) GapiLens.t
Sourceval id : (t, string) GapiLens.t
Sourceval locale : (t, string) GapiLens.t
Sourceval name : (t, string) GapiLens.t
Sourceval picture : (t, string) GapiLens.t
Sourceval verified_email : (t, bool) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t