pub struct IdentitytoolkitRelyingpartyVerifyPasswordRequest {
pub captcha_challenge: Option<String>,
pub captcha_response: Option<String>,
pub delegated_project_number: Option<i64>,
pub email: Option<String>,
pub id_token: Option<String>,
pub instance_id: Option<String>,
pub password: Option<String>,
pub pending_id_token: Option<String>,
pub return_secure_token: Option<bool>,
pub tenant_id: Option<String>,
pub tenant_project_number: Option<u64>,
}Expand description
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).
- verify password relyingparty (request)
Fields§
§captcha_challenge: Option<String>The captcha challenge.
captcha_response: Option<String>Response to the captcha.
delegated_project_number: Option<i64>GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration.
email: Option<String>The email of the user.
id_token: Option<String>The GITKit token of the authenticated user.
instance_id: Option<String>Instance id token of the app.
password: Option<String>The password inputed by the user.
pending_id_token: Option<String>The GITKit token for the non-trusted IDP, which is to be confirmed by the user.
return_secure_token: Option<bool>Whether return sts id token and refresh token instead of gitkit token.
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.
tenant_project_number: Option<u64>Tenant project number to be used for idp discovery.
Trait Implementations§
Source§impl Clone for IdentitytoolkitRelyingpartyVerifyPasswordRequest
impl Clone for IdentitytoolkitRelyingpartyVerifyPasswordRequest
Source§fn clone(&self) -> IdentitytoolkitRelyingpartyVerifyPasswordRequest
fn clone(&self) -> IdentitytoolkitRelyingpartyVerifyPasswordRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for IdentitytoolkitRelyingpartyVerifyPasswordRequest
impl Default for IdentitytoolkitRelyingpartyVerifyPasswordRequest
Source§fn default() -> IdentitytoolkitRelyingpartyVerifyPasswordRequest
fn default() -> IdentitytoolkitRelyingpartyVerifyPasswordRequest
Source§impl<'de> Deserialize<'de> for IdentitytoolkitRelyingpartyVerifyPasswordRequest
impl<'de> Deserialize<'de> for IdentitytoolkitRelyingpartyVerifyPasswordRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for IdentitytoolkitRelyingpartyVerifyPasswordRequest
Auto Trait Implementations§
impl Freeze for IdentitytoolkitRelyingpartyVerifyPasswordRequest
impl RefUnwindSafe for IdentitytoolkitRelyingpartyVerifyPasswordRequest
impl Send for IdentitytoolkitRelyingpartyVerifyPasswordRequest
impl Sync for IdentitytoolkitRelyingpartyVerifyPasswordRequest
impl Unpin for IdentitytoolkitRelyingpartyVerifyPasswordRequest
impl UnwindSafe for IdentitytoolkitRelyingpartyVerifyPasswordRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more