pub struct CraIncomeInsights {
pub bank_income_summary: Option<CraBankIncomeSummary>,
pub days_requested: Option<i64>,
pub generated_time: Option<DateTime<Utc>>,
pub items: Option<Vec<CraBankIncomeItem>>,
pub report_id: Option<String>,
pub warnings: Option<Vec<CraBankIncomeWarning>>,
}Expand description
The Check Income Insights Report for an end user.
Fields§
§bank_income_summary: Option<CraBankIncomeSummary>Summary for income across all income sources and items (max history of 730 days).
days_requested: Option<i64>The number of days requested by the customer for the Check Income Insights Report.
generated_time: Option<DateTime<Utc>>The time when the Check Income Insights Report was generated.
items: Option<Vec<CraBankIncomeItem>>The list of Items in the report along with the associated metadata about the Item.
report_id: Option<String>The unique identifier associated with the Check Income Insights Report.
warnings: Option<Vec<CraBankIncomeWarning>>If data from the report was unable to be retrieved, the warnings object will contain information about the error that caused the data to be incomplete.
Trait Implementations§
Source§impl Clone for CraIncomeInsights
impl Clone for CraIncomeInsights
Source§fn clone(&self) -> CraIncomeInsights
fn clone(&self) -> CraIncomeInsights
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 CraIncomeInsights
impl Debug for CraIncomeInsights
Source§impl Default for CraIncomeInsights
impl Default for CraIncomeInsights
Source§fn default() -> CraIncomeInsights
fn default() -> CraIncomeInsights
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CraIncomeInsights
impl<'de> Deserialize<'de> for CraIncomeInsights
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 CraIncomeInsights
impl Display for CraIncomeInsights
Auto Trait Implementations§
impl Freeze for CraIncomeInsights
impl RefUnwindSafe for CraIncomeInsights
impl Send for CraIncomeInsights
impl Sync for CraIncomeInsights
impl Unpin for CraIncomeInsights
impl UnwindSafe for CraIncomeInsights
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