[][src]Struct google_identitytoolkit3::IdentitytoolkitRelyingpartyGetProjectConfigResponse

pub struct IdentitytoolkitRelyingpartyGetProjectConfigResponse {
    pub dynamic_links_domain: Option<String>,
    pub api_key: Option<String>,
    pub use_email_sending: Option<bool>,
    pub project_id: Option<String>,
    pub enable_anonymous_user: Option<bool>,
    pub authorized_domains: Option<Vec<String>>,
    pub change_email_template: Option<EmailTemplate>,
    pub legacy_reset_password_template: Option<EmailTemplate>,
    pub verify_email_template: Option<EmailTemplate>,
    pub allow_password_user: Option<bool>,
    pub reset_password_template: Option<EmailTemplate>,
    pub idp_config: Option<Vec<IdpConfig>>,
}

Response of getting the project configuration.

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

dynamic_links_domain: Option<String>

no description provided

api_key: Option<String>

Browser API key, needed when making http request to Apiary.

use_email_sending: Option<bool>

Whether to use email sending provided by Firebear.

project_id: Option<String>

Project ID of the relying party.

enable_anonymous_user: Option<bool>

Whether anonymous user is enabled.

authorized_domains: Option<Vec<String>>

Authorized domains.

change_email_template: Option<EmailTemplate>

Change email template.

legacy_reset_password_template: Option<EmailTemplate>

Legacy reset password email template.

verify_email_template: Option<EmailTemplate>

Verify email template.

allow_password_user: Option<bool>

Whether to allow password user sign in or sign up.

reset_password_template: Option<EmailTemplate>

Reset password email template.

idp_config: Option<Vec<IdpConfig>>

OAuth2 provider configuration.

Trait Implementations

impl Clone for IdentitytoolkitRelyingpartyGetProjectConfigResponse[src]

impl Debug for IdentitytoolkitRelyingpartyGetProjectConfigResponse[src]

impl Default for IdentitytoolkitRelyingpartyGetProjectConfigResponse[src]

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

impl ResponseResult for IdentitytoolkitRelyingpartyGetProjectConfigResponse[src]

impl Serialize for IdentitytoolkitRelyingpartyGetProjectConfigResponse[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, 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.

impl<T> Typeable for T where
    T: Any