Struct google_identitytoolkit3::api::Relyingparty[][src]

pub struct Relyingparty {
    pub android_install_app: Option<bool>,
    pub android_minimum_version: Option<String>,
    pub android_package_name: Option<String>,
    pub can_handle_code_in_app: Option<bool>,
    pub captcha_resp: Option<String>,
    pub challenge: Option<String>,
    pub continue_url: Option<String>,
    pub email: Option<String>,
    pub i_os_app_store_id: Option<String>,
    pub i_os_bundle_id: Option<String>,
    pub id_token: Option<String>,
    pub kind: Option<String>,
    pub new_email: Option<String>,
    pub request_type: Option<String>,
    pub user_ip: Option<String>,
}

Request of getting a code for user confirmation (reset password, change email etc.)

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

android_install_app: Option<bool>

whether or not to install the android app on the device where the link is opened

android_minimum_version: Option<String>

minimum version of the app. if the version on the device is lower than this version then the user is taken to the play store to upgrade the app

android_package_name: Option<String>

android package name of the android app to handle the action code

can_handle_code_in_app: Option<bool>

whether or not the app can handle the oob code without first going to web

captcha_resp: Option<String>

The recaptcha response from the user.

challenge: Option<String>

The recaptcha challenge presented to the user.

continue_url: Option<String>

The url to continue to the Gitkit app

email: Option<String>

The email of the user.

i_os_app_store_id: Option<String>

iOS app store id to download the app if it’s not already installed

i_os_bundle_id: Option<String>

the iOS bundle id of iOS app to handle the action code

id_token: Option<String>

The user’s Gitkit login token for email change.

kind: Option<String>

The fixed string “identitytoolkit#relyingparty”.

new_email: Option<String>

The new email if the code is for email change.

request_type: Option<String>

The request type.

user_ip: Option<String>

The IP address of the user.

Trait Implementations

impl Clone for Relyingparty[src]

impl Debug for Relyingparty[src]

impl Default for Relyingparty[src]

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

impl RequestValue for Relyingparty[src]

impl Serialize for Relyingparty[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> Instrument 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.