pub struct AccountTransactionsResponse {
pub paging: Option<Paging>,
pub aggregated: Option<AccountTransactionAggregate>,
pub values: Vec<AccountTransaction>,
}Expand description
API response for /banking/v1/accounts/{account_id}/transactions.
Fields§
§paging: Option<Paging>§aggregated: Option<AccountTransactionAggregate>§values: Vec<AccountTransaction>Trait Implementations§
Source§impl Clone for AccountTransactionsResponse
impl Clone for AccountTransactionsResponse
Source§fn clone(&self) -> AccountTransactionsResponse
fn clone(&self) -> AccountTransactionsResponse
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 Debug for AccountTransactionsResponse
impl Debug for AccountTransactionsResponse
Source§impl Default for AccountTransactionsResponse
impl Default for AccountTransactionsResponse
Source§fn default() -> AccountTransactionsResponse
fn default() -> AccountTransactionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountTransactionsResponse
impl<'de> Deserialize<'de> for AccountTransactionsResponse
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 AccountTransactionsResponse
impl RefUnwindSafe for AccountTransactionsResponse
impl Send for AccountTransactionsResponse
impl Sync for AccountTransactionsResponse
impl Unpin for AccountTransactionsResponse
impl UnsafeUnpin for AccountTransactionsResponse
impl UnwindSafe for AccountTransactionsResponse
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