pub struct AssetReportItem {
pub accounts: Vec<AccountAssets>,
pub date_last_updated: DateTime<Utc>,
pub institution_id: String,
pub institution_name: String,
pub item_id: String,
}Expand description
A representation of an Item within an Asset Report.
Fields§
§accounts: Vec<AccountAssets>Data about each of the accounts open on the Item.
date_last_updated: DateTime<Utc>The date and time when this Item’s data was last retrieved from the financial institution, in ISO 8601 format.
institution_id: StringThe id of the financial institution associated with the Item.
institution_name: StringThe full financial institution name associated with the Item.
item_id: StringThe item_id of the Item associated with this webhook, warning, or error
Trait Implementations§
Source§impl Clone for AssetReportItem
impl Clone for AssetReportItem
Source§fn clone(&self) -> AssetReportItem
fn clone(&self) -> AssetReportItem
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 AssetReportItem
impl Debug for AssetReportItem
Source§impl Default for AssetReportItem
impl Default for AssetReportItem
Source§fn default() -> AssetReportItem
fn default() -> AssetReportItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssetReportItem
impl<'de> Deserialize<'de> for AssetReportItem
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
Source§impl Display for AssetReportItem
impl Display for AssetReportItem
Auto Trait Implementations§
impl Freeze for AssetReportItem
impl RefUnwindSafe for AssetReportItem
impl Send for AssetReportItem
impl Sync for AssetReportItem
impl Unpin for AssetReportItem
impl UnwindSafe for AssetReportItem
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