[][src]Struct google_identitytoolkit3::Relyingparty

pub struct Relyingparty {
    pub can_handle_code_in_app: Option<bool>,
    pub kind: Option<String>,
    pub i_os_bundle_id: Option<String>,
    pub android_minimum_version: Option<String>,
    pub android_install_app: Option<bool>,
    pub android_package_name: Option<String>,
    pub id_token: Option<String>,
    pub challenge: Option<String>,
    pub i_os_app_store_id: Option<String>,
    pub continue_url: Option<String>,
    pub request_type: Option<String>,
    pub new_email: Option<String>,
    pub user_ip: Option<String>,
    pub email: Option<String>,
    pub captcha_resp: 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

can_handle_code_in_app: Option<bool>

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

kind: Option<String>

The fixed string "identitytoolkit#relyingparty".

i_os_bundle_id: Option<String>

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

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_install_app: Option<bool>

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

android_package_name: Option<String>

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

id_token: Option<String>

The user's Gitkit login token for email change.

challenge: Option<String>

The recaptcha challenge presented to the user.

i_os_app_store_id: Option<String>

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

continue_url: Option<String>

The url to continue to the Gitkit app

request_type: Option<String>

The request type.

new_email: Option<String>

The new email if the code is for email change.

user_ip: Option<String>

The IP address of the user.

email: Option<String>

The email of the user.

captcha_resp: Option<String>

The recaptcha response from the user.

Trait Implementations

impl RequestValue for Relyingparty[src]

impl Clone for Relyingparty[src]

impl Default for Relyingparty[src]

impl Debug for Relyingparty[src]

impl Serialize for Relyingparty[src]

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

Auto Trait Implementations

Blanket Implementations

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 = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

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