Struct google_identitytoolkit3::IdentitytoolkitRelyingpartySignupNewUserRequest [] [src]

pub struct IdentitytoolkitRelyingpartySignupNewUserRequest {
    pub display_name: Option<String>,
    pub photo_url: Option<String>,
    pub instance_id: Option<String>,
    pub email_verified: Option<bool>,
    pub disabled: Option<bool>,
    pub captcha_response: Option<String>,
    pub id_token: Option<String>,
    pub captcha_challenge: Option<String>,
    pub password: Option<String>,
    pub email: Option<String>,
}

Request to signup new user, create 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

The name of the user.

The photo url of the user.

Instance id token of the app.

Mark the email as verified or not. Only can be used by service account.

Whether to disable the user. Only can be used by service account.

Response to the captcha.

The GITKit token of the authenticated user.

The captcha challenge.

The new password of the user.

The email of the user.

Trait Implementations

impl Debug for IdentitytoolkitRelyingpartySignupNewUserRequest
[src]

Formats the value using the given formatter.

impl Clone for IdentitytoolkitRelyingpartySignupNewUserRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for IdentitytoolkitRelyingpartySignupNewUserRequest
[src]

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

impl RequestValue for IdentitytoolkitRelyingpartySignupNewUserRequest
[src]