Struct google_identitytoolkit3::IdpConfig[][src]

pub struct IdpConfig {
    pub experiment_percent: Option<i32>,
    pub secret: Option<String>,
    pub provider: Option<String>,
    pub whitelisted_audiences: Option<Vec<String>>,
    pub enabled: Option<bool>,
    pub client_id: Option<String>,
}

Template for a single idp configuration.

This type is not used in any activity, and only used as part of another schema.

Fields

Percent of users who will be prompted/redirected federated login for this IDP.

OAuth2 client secret.

OAuth2 provider.

Whitelisted client IDs for audience check.

Whether this IDP is enabled.

OAuth2 client ID.

Trait Implementations

impl Default for IdpConfig
[src]

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

impl Clone for IdpConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for IdpConfig
[src]

Formats the value using the given formatter. Read more

impl Part for IdpConfig
[src]

Auto Trait Implementations

impl Send for IdpConfig

impl Sync for IdpConfig