Struct plaid::transactions::GetTransactionsResponse[][src]

pub struct GetTransactionsResponse {
    pub request_id: String,
    pub accounts: Vec<Account>,
    pub transactions: Vec<Transaction>,
    pub total_transactions: i32,
    pub item: Item,
}

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.

accounts: Vec<Account>

An array containing the accounts associated with the Item for which transactions are being returned. Each transaction can be mapped to its corresponding account via the account_id field.

transactions: Vec<Transaction>

An array containing transactions from the account. Transactions are returned in reverse chronological order, with the most recent at the beginning of the array. The maximum number of transactions returned is determined by the count parameter.

total_transactions: i32

The total number of transactions available within the date range specified. If total_transactions is larger than the size of the transactions array, more transactions are available and can be fetched via manipulating the offset parameter.

item: Item

Metadata about the Item.

Trait Implementations

impl Clone for GetTransactionsResponse[src]

impl Debug for GetTransactionsResponse[src]

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

Auto Trait Implementations

impl RefUnwindSafe for GetTransactionsResponse[src]

impl Send for GetTransactionsResponse[src]

impl Sync for GetTransactionsResponse[src]

impl Unpin for GetTransactionsResponse[src]

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