pub struct AssetsAccountSummarySchema {
pub id: String,
pub party_ids: Vec<String>,
pub institution_name: String,
pub account_type: String,
pub account_number_last_four: String,
pub connection_status: String,
pub last_refresh: Option<Value>,
}
Fields§
§id: String
The UUID of the an Asset account in Blend’s system.
party_ids: Vec<String>
Ids of parties that own this account, as stated in the application. This is not guaranteed to match account ownership data retrieved from data providers for Connected Assets.
institution_name: String
The name of the financial institution that holds this account.
account_type: String
The type of an asset account
account_number_last_four: String
The last four digits of the account number.
connection_status: String
Connection Status of an Assets account CONNECTED - This account was originally connected to through a data provider. Refreshes will result in us attempting to pull updated data from our data provider and generating an updated Asset statement. We may also attempt to pull an Asset statement from the financial institution directly. NOT_CONNECTED - This account was originally not connected to. Refreshes will result in us issuing an Account Statements follow-up LOCKED - This account was originally connected to while using multi-factor authentication. Refreshes will result in us issuing an Updated Assets follow-up for the owner to re-connect.
last_refresh: Option<Value>
Summary of last Assets refresh attempt for this account. This will be omitted from accounts we have not completed a refresh for. If a refresh is in progress, this will be omitted until the refresh has completed.