Struct google_identitytoolkit3::CreateAuthUriResponse [] [src]

pub struct CreateAuthUriResponse {
    pub kind: Option<String>,
    pub captcha_required: Option<bool>,
    pub registered: Option<bool>,
    pub all_providers: Option<Vec<String>>,
    pub for_existing_provider: Option<bool>,
    pub session_id: Option<String>,
    pub provider_id: Option<String>,
    pub auth_uri: Option<String>,
}

Response of creating the IDP authentication URL.

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

The fixed string identitytoolkit#CreateAuthUriResponse".

True if captcha is required.

Whether the user is registered if the identifier is an email.

all providers the user has once used to do federated login

True if the authUri is for user's existing provider.

Session ID which should be passed in the following verifyAssertion request.

The provider ID of the auth URI.

The URI used by the IDP to authenticate the user.

Trait Implementations

impl Debug for CreateAuthUriResponse
[src]

Formats the value using the given formatter.

impl Clone for CreateAuthUriResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for CreateAuthUriResponse
[src]

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

impl ResponseResult for CreateAuthUriResponse
[src]