Struct plaid::link_token::GetLinkTokenMetadataResponse[][src]

pub struct GetLinkTokenMetadataResponse {
    pub initial_products: Vec<String>,
    pub webhook: Option<String>,
    pub country_codes: Vec<String>,
    pub language: Option<String>,
    pub account_filters: HashMap<String, HashMap<String, Vec<String>>>,
    pub redirect_uri: Option<String>,
    pub client_name: Option<String>,
}

Fields

initial_products: Vec<String>

The products specified in the /link/token/create call.

webhook: Option<String>

The webhook specified in the /link/token/create call.

country_codes: Vec<String>

The country_codes specified in the /link/token/create call.

language: Option<String>

The language specified in the /link/token/create call.

account_filters: HashMap<String, HashMap<String, Vec<String>>>

The account_filters specified in the original call to /link/token/create.

redirect_uri: Option<String>

The redirect_uri specified in the /link/token/create call.

client_name: Option<String>

The client_name specified in the /link/token/create call.

Trait Implementations

impl Debug for GetLinkTokenMetadataResponse[src]

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

Auto Trait Implementations

impl RefUnwindSafe for GetLinkTokenMetadataResponse[src]

impl Send for GetLinkTokenMetadataResponse[src]

impl Sync for GetLinkTokenMetadataResponse[src]

impl Unpin for GetLinkTokenMetadataResponse[src]

impl UnwindSafe for GetLinkTokenMetadataResponse[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.