pub struct WalletTransactionListResponse {
pub next_cursor: Option<String>,
pub request_id: String,
pub transactions: Vec<WalletTransaction>,
}Expand description
WalletTransactionListResponse defines the response schema for /wallet/transaction/list
Fields§
§next_cursor: Option<String>Cursor used for fetching transactions created before the latest transaction provided in this response
request_id: StringA unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive.
transactions: Vec<WalletTransaction>An array of transactions of an e-wallet, associated with the given wallet_id
Trait Implementations§
Source§impl Clone for WalletTransactionListResponse
impl Clone for WalletTransactionListResponse
Source§fn clone(&self) -> WalletTransactionListResponse
fn clone(&self) -> WalletTransactionListResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for WalletTransactionListResponse
impl Default for WalletTransactionListResponse
Source§fn default() -> WalletTransactionListResponse
fn default() -> WalletTransactionListResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WalletTransactionListResponse
impl<'de> Deserialize<'de> for WalletTransactionListResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for WalletTransactionListResponse
impl RefUnwindSafe for WalletTransactionListResponse
impl Send for WalletTransactionListResponse
impl Sync for WalletTransactionListResponse
impl Unpin for WalletTransactionListResponse
impl UnwindSafe for WalletTransactionListResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more