Struct plaid::link_token::LinkTokenConfigs[][src]

pub struct LinkTokenConfigs<'a> {
    pub user: LinkTokenUser<'a>,
    pub client_name: &'a str,
    pub language: &'a str,
    pub country_codes: &'a [&'a str],
    pub products: Option<&'a [&'a str]>,
    pub webhook: Option<&'a str>,
    pub access_token: Option<&'a str>,
    pub link_customization_name: Option<&'a str>,
    pub account_filters: Option<HashMap<&'a str, HashMap<&'a str, Vec<&'a str>>>>,
    pub redirect_uri: Option<&'a str>,
    pub android_package_name: Option<&'a str>,
}

Fields

user: LinkTokenUser<'a>

An object specifying information about the end user who will be linking their account.

client_name: &'a str

The name of your application, as it should be displayed in Link.

language: &'a str

The language that Link should be displayed in.

country_codes: &'a [&'a str]

Specify an array of Plaid-supported country codes using the ISO-3166-1 alpha-2 country code standard.

products: Option<&'a [&'a str]>

List of Plaid product(s) you wish to use.

webhook: Option<&'a str>

The destination URL to which any webhooks should be sent.

access_token: Option<&'a str>

The access_token associated with the Item to update, used when updating or modifying an existing access_token. Used when launching Link in update mode, when completing the Same-day (manual) Micro-deposit flow, or (optionally) when initializing Link as part of the Payment Initiation (UK and Europe) flow.

link_customization_name: Option<&'a str>

The name of the Link customization from the Plaid Dashboard to be applied to Link.

account_filters: Option<HashMap<&'a str, HashMap<&'a str, Vec<&'a str>>>>redirect_uri: Option<&'a str>

A URI indicating the destination where a user should be forwarded after completing the Link flow

android_package_name: Option<&'a str>

The name of your app's Android package.

Trait Implementations

impl<'a> Clone for LinkTokenConfigs<'a>[src]

impl<'a> Debug for LinkTokenConfigs<'a>[src]

impl Default for LinkTokenConfigs<'_>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for LinkTokenConfigs<'a>[src]

impl<'a> Send for LinkTokenConfigs<'a>[src]

impl<'a> Sync for LinkTokenConfigs<'a>[src]

impl<'a> Unpin for LinkTokenConfigs<'a>[src]

impl<'a> UnwindSafe for LinkTokenConfigs<'a>[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> 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.