Struct google_identitytoolkit3::Relyingparty[][src]

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

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

The fixed string "identitytoolkit#relyingparty".

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

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

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

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

The user's Gitkit login token for email change.

The recaptcha challenge presented to the user.

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

The url to continue to the Gitkit app

The request type.

The new email if the code is for email change.

The IP address of the user.

The email of the user.

The recaptcha response from the user.

Trait Implementations

impl Default for Relyingparty
[src]

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

impl Clone for Relyingparty
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Relyingparty
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Relyingparty
[src]

Auto Trait Implementations