Struct google_identitytoolkit3::SignupNewUserResponse[][src]

pub struct SignupNewUserResponse {
    pub expires_in: Option<String>,
    pub kind: Option<String>,
    pub display_name: Option<String>,
    pub local_id: Option<String>,
    pub id_token: Option<String>,
    pub refresh_token: Option<String>,
    pub email: Option<String>,
}

Response of signing up new user, creating anonymous user or anonymous user reauth.

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

The name of the user.

The RP local ID of the user.

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

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

The email of the user.

Trait Implementations

impl Default for SignupNewUserResponse
[src]

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

impl Clone for SignupNewUserResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SignupNewUserResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for SignupNewUserResponse
[src]

Auto Trait Implementations