Struct plaid::item::Item[][src]

pub struct Item {
    pub item_id: String,
    pub institution_id: Option<String>,
    pub webhook: Option<String>,
    pub error: Option<ErrorResponse>,
    pub available_products: Vec<String>,
    pub billed_products: Vec<String>,
    pub consent_expiration_time: Option<DateTime<Utc>>,
    pub update_type: String,
}

Metadata about the Item.

Fields

item_id: String

The Plaid Item ID.

institution_id: Option<String>

The Plaid Institution ID associated with the Item. Field is null for Items created via Same Day Micro-deposits.

webhook: Option<String>

The URL registered to receive webhooks for the Item.

error: Option<ErrorResponse>

We use standard HTTP response codes for success and failure notifications, and our errors are further classified by error_type.

available_products: Vec<String>

A list of products available for the Item that have not yet been accessed.

billed_products: Vec<String>

A list of products that have been billed for the Item. Note - billed_products is populated in all environments but only requests in Production are billed.

consent_expiration_time: Option<DateTime<Utc>>

The RFC 3339 timestamp after which the consent provided by the end user will expire.

update_type: String

Indicates whether an Item requires user interaction to be updated, which can be the case for Items with some forms of two-factor authentication.

Trait Implementations

impl Clone for Item[src]

impl Debug for Item[src]

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

Auto Trait Implementations

impl RefUnwindSafe for Item[src]

impl Send for Item[src]

impl Sync for Item[src]

impl Unpin for Item[src]

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