Struct plaid::institutions::GetInstitutionsOptions[][src]

pub struct GetInstitutionsOptions {
    pub products: Vec<String>,
    pub routing_numbers: Vec<String>,
    pub oauth: Option<bool>,
    pub include_optional_metadata: bool,
}

Fields

products: Vec<String>

Filter the Institutions based on which products they support. Possible values: assets, auth, balance, identity, investments, liabilities, payment_initiation, transactions, credit_details, income, deposit_switch

routing_numbers: Vec<String>

Specify an array of routing numbers to filter institutions.

oauth: Option<bool>

Limit results to institutions with or without OAuth login flows. This is primarily relevant to institutions with European country codes.

include_optional_metadata: bool

When true, return the institution's homepage URL, logo and primary brand color.

Trait Implementations

impl Default for GetInstitutionsOptions[src]

impl Serialize for GetInstitutionsOptions[src]

Auto Trait Implementations

impl RefUnwindSafe for GetInstitutionsOptions[src]

impl Send for GetInstitutionsOptions[src]

impl Sync for GetInstitutionsOptions[src]

impl Unpin for GetInstitutionsOptions[src]

impl UnwindSafe for GetInstitutionsOptions[src]

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.