Struct google_identitytoolkit3::VerifyPasswordResponse [] [src]

pub struct VerifyPasswordResponse {
    pub expires_in: Option<String>,
    pub kind: Option<String>,
    pub display_name: Option<String>,
    pub local_id: Option<String>,
    pub oauth_access_token: Option<String>,
    pub photo_url: Option<String>,
    pub oauth_expire_in: Option<i32>,
    pub id_token: Option<String>,
    pub registered: Option<bool>,
    pub oauth_authorization_code: Option<String>,
    pub refresh_token: Option<String>,
    pub email: Option<String>,
}

Request of verifying the password.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

If idToken is STS id token, then this field will be expiration time of STS id token in seconds.

The fixed string "identitytoolkit#VerifyPasswordResponse".

The name of the user.

The RP local ID if it's already been mapped to the IdP account identified by the federated ID.

The OAuth2 access token.

The URI of the user's photo at IdP

The lifetime in seconds of the OAuth2 access token.

The GITKit token for authenticated user.

Whether the email is registered.

The OAuth2 authorization code.

If idToken is STS id token, then this field will be refresh token.

The email returned by the IdP. NOTE: The federated login user may not own the email.

Trait Implementations

impl Debug for VerifyPasswordResponse
[src]

Formats the value using the given formatter.

impl Clone for VerifyPasswordResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for VerifyPasswordResponse
[src]

Returns the "default value" for a type. Read more

impl ResponseResult for VerifyPasswordResponse
[src]