Struct google_identitytoolkit3::SetAccountInfoResponse [] [src]

pub struct SetAccountInfoResponse {
    pub expires_in: Option<String>,
    pub kind: Option<String>,
    pub display_name: Option<String>,
    pub local_id: Option<String>,
    pub photo_url: Option<String>,
    pub id_token: Option<String>,
    pub password_hash: Option<String>,
    pub new_email: Option<String>,
    pub refresh_token: Option<String>,
    pub provider_user_info: Option<Vec<SetAccountInfoResponseProviderUserInfo>>,
    pub email: Option<String>,
}

Respone of setting the account information.

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#SetAccountInfoResponse".

The name of the user.

The local ID of the user.

The photo url of the user.

The Gitkit id token to login the newly sign up user.

The user's hashed password.

The new email the user attempts to change to.

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

The user's profiles at the associated IdPs.

The email of the user.

Trait Implementations

impl Debug for SetAccountInfoResponse
[src]

Formats the value using the given formatter.

impl Clone for SetAccountInfoResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for SetAccountInfoResponse
[src]

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

impl ResponseResult for SetAccountInfoResponse
[src]