[][src]Struct google_identitytoolkit3::IdentitytoolkitRelyingpartyVerifyPasswordRequest

pub struct IdentitytoolkitRelyingpartyVerifyPasswordRequest {
    pub delegated_project_number: Option<String>,
    pub instance_id: Option<String>,
    pub id_token: Option<String>,
    pub tenant_project_number: Option<String>,
    pub pending_id_token: Option<String>,
    pub captcha_challenge: Option<String>,
    pub captcha_response: Option<String>,
    pub return_secure_token: Option<bool>,
    pub password: Option<String>,
    pub email: Option<String>,
    pub tenant_id: Option<String>,
}

Request to verify 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

delegated_project_number: Option<String>

GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration.

instance_id: Option<String>

Instance id token of the app.

id_token: Option<String>

The GITKit token of the authenticated user.

tenant_project_number: Option<String>

Tenant project number to be used for idp discovery.

pending_id_token: Option<String>

The GITKit token for the non-trusted IDP, which is to be confirmed by the user.

captcha_challenge: Option<String>

The captcha challenge.

captcha_response: Option<String>

Response to the captcha.

return_secure_token: Option<bool>

Whether return sts id token and refresh token instead of gitkit token.

password: Option<String>

The password inputed by the user.

email: Option<String>

The email of the user.

tenant_id: Option<String>

For multi-tenant use cases, in order to construct sign-in URL with the correct IDP parameters, Firebear needs to know which Tenant to retrieve IDP configs from.

Trait Implementations

impl Clone for IdentitytoolkitRelyingpartyVerifyPasswordRequest[src]

impl Debug for IdentitytoolkitRelyingpartyVerifyPasswordRequest[src]

impl Default for IdentitytoolkitRelyingpartyVerifyPasswordRequest[src]

impl<'de> Deserialize<'de> for IdentitytoolkitRelyingpartyVerifyPasswordRequest[src]

impl RequestValue for IdentitytoolkitRelyingpartyVerifyPasswordRequest[src]

impl Serialize for IdentitytoolkitRelyingpartyVerifyPasswordRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any