pub struct BaseReportItem {
pub accounts: Vec<BaseReportAccount>,
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 a Base Report.
Fields§
§accounts: Vec<BaseReportAccount>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 BaseReportItem
impl Clone for BaseReportItem
Source§fn clone(&self) -> BaseReportItem
fn clone(&self) -> BaseReportItem
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 BaseReportItem
impl Debug for BaseReportItem
Source§impl Default for BaseReportItem
impl Default for BaseReportItem
Source§fn default() -> BaseReportItem
fn default() -> BaseReportItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BaseReportItem
impl<'de> Deserialize<'de> for BaseReportItem
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 BaseReportItem
impl Display for BaseReportItem
Auto Trait Implementations§
impl Freeze for BaseReportItem
impl RefUnwindSafe for BaseReportItem
impl Send for BaseReportItem
impl Sync for BaseReportItem
impl Unpin for BaseReportItem
impl UnwindSafe for BaseReportItem
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