Struct google_identitytoolkit3::VerifyCustomTokenResponse[][src]

pub struct VerifyCustomTokenResponse {
    pub expires_in: Option<String>,
    pub id_token: Option<String>,
    pub is_new_user: Option<bool>,
    pub refresh_token: Option<String>,
    pub kind: Option<String>,
}

Response from verifying a custom token

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 GITKit token for authenticated user.

True if it's a new user sign-in, false if it's a returning user.

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

The fixed string "identitytoolkit#VerifyCustomTokenResponse".

Trait Implementations

impl Default for VerifyCustomTokenResponse
[src]

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

impl Clone for VerifyCustomTokenResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for VerifyCustomTokenResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for VerifyCustomTokenResponse
[src]

Auto Trait Implementations