Struct plaid::link_token::CreateLinkTokenResponse[][src]

pub struct CreateLinkTokenResponse {
    pub request_id: String,
    pub link_token: String,
    pub expiration: DateTime<Utc>,
}

Fields

request_id: String

A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.

link_token: String

A link_token, which can be supplied to Link in order to initialize it and receive a public_token, which can be exchanged for an access_token.

expiration: DateTime<Utc>

The expiration date for the link_token, in ISO 8601 format.

Trait Implementations

impl Debug for CreateLinkTokenResponse[src]

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

Auto Trait Implementations

impl RefUnwindSafe for CreateLinkTokenResponse[src]

impl Send for CreateLinkTokenResponse[src]

impl Sync for CreateLinkTokenResponse[src]

impl Unpin for CreateLinkTokenResponse[src]

impl UnwindSafe for CreateLinkTokenResponse[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.