pub struct BaseReportAttributes {
pub is_primary_account: Option<bool>,
pub nsf_overdraft_transactions_count: Option<i64>,
pub primary_account_score: Option<f64>,
pub total_inflow_amount: Option<TotalInflowAmount>,
pub total_inflow_amount30_d: Option<TotalInflowAmount30D>,
pub total_inflow_amount60_d: Option<TotalInflowAmount60D>,
pub total_inflow_amount90_d: Option<TotalInflowAmount90D>,
pub total_outflow_amount: Option<TotalOutflowAmount>,
pub total_outflow_amount30_d: Option<TotalOutflowAmount30D>,
pub total_outflow_amount60_d: Option<TotalOutflowAmount60D>,
pub total_outflow_amount90_d: Option<TotalOutflowAmount90D>,
}
Expand description
Calculated attributes derived from transaction-level data.
Fields§
§is_primary_account: Option<bool>
Prediction indicator of whether the account is a primary account. Only one account per account type across the items connected will have a value of true.
nsf_overdraft_transactions_count: Option<i64>
The number of NSF and overdraft fee transactions in the time range for the report in the given account.
primary_account_score: Option<f64>
Value ranging from 0-1. The higher the score, the more confident we are of the account being the primary account.
total_inflow_amount: Option<TotalInflowAmount>
Total amount of debit transactions into the account in the time period of the report. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
total_inflow_amount30_d: Option<TotalInflowAmount30D>
Total amount of debit transactions into the account in the last 30 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
total_inflow_amount60_d: Option<TotalInflowAmount60D>
Total amount of debit transactions into the account in the last 60 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
total_inflow_amount90_d: Option<TotalInflowAmount90D>
Total amount of debit transactions into the account in the last 90 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
total_outflow_amount: Option<TotalOutflowAmount>
Total amount of credit transactions into the account in the time period of the report. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
total_outflow_amount30_d: Option<TotalOutflowAmount30D>
Total amount of credit transactions into the account in the last 30 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
total_outflow_amount60_d: Option<TotalOutflowAmount60D>
Total amount of credit transactions into the account in the last 60 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
total_outflow_amount90_d: Option<TotalOutflowAmount90D>
Total amount of credit transactions into the account in the last 90 days. This field will be empty for non-depository accounts. This field only takes into account USD transactions from the account.
Trait Implementations§
Source§impl Clone for BaseReportAttributes
impl Clone for BaseReportAttributes
Source§fn clone(&self) -> BaseReportAttributes
fn clone(&self) -> BaseReportAttributes
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more