Struct plaid::item::GetItemResponse[][src]

pub struct GetItemResponse {
    pub request_id: String,
    pub item: Item,
    pub status: Option<ItemStatus>,
    pub access_token: Option<String>,
}

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.

item: Item

Metadata about the Item.

status: Option<ItemStatus>

An object with information about the status of the Item.

access_token: Option<String>

The access token associated with the Item data is being requested for.

Trait Implementations

impl Clone for GetItemResponse[src]

impl Debug for GetItemResponse[src]

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

Auto Trait Implementations

impl RefUnwindSafe for GetItemResponse[src]

impl Send for GetItemResponse[src]

impl Sync for GetItemResponse[src]

impl Unpin for GetItemResponse[src]

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