pub struct AssetReportCreateRequestOptions {
pub add_ons: Option<Vec<AssetReportAddOns>>,
pub client_report_id: Option<String>,
pub include_fast_report: Option<bool>,
pub products: Option<Vec<String>>,
pub require_all_items: Option<bool>,
pub user: Option<AssetReportUser>,
pub webhook: Option<String>,
}
Expand description
An optional object to filter /asset_report/create
results. If provided, must be non-null
. The optional user
object is required for the report to be eligible for Fannie Mae’s Day 1 Certainty program.
Fields§
§add_ons: Option<Vec<AssetReportAddOns>>
This field can be used to add additional options for the Asset Report. To fetch investments
data (transactions, holdings, etc.) in the Asset Report, investments
must be specified in add_ons
. For Fast Assets, fast_assets
must be specified in add_ons
.
client_report_id: Option<String>
Client-generated identifier, which can be used by lenders to track loan applications.
include_fast_report: Option<bool>
true to return balance and identity earlier as a fast report. Defaults to false if omitted.
products: Option<Vec<String>>
Additional information that can be included in the asset report. Possible values: "investments"
require_all_items: Option<bool>
If set to false, only 1 item must be healthy at the time of report creation. The default value is true, which would require all items to be healthy at the time of report creation.
user: Option<AssetReportUser>
The user object allows you to provide additional information about the user to be appended to the Asset Report. All fields are optional. The first_name
, last_name
, and ssn
fields are required if you would like the Report to be eligible for Fannie Mae’s Day 1 Certainty™ program.
webhook: Option<String>
URL to which Plaid will send Assets webhooks, for example when the requested Asset Report is ready.
Trait Implementations§
Source§impl Clone for AssetReportCreateRequestOptions
impl Clone for AssetReportCreateRequestOptions
Source§fn clone(&self) -> AssetReportCreateRequestOptions
fn clone(&self) -> AssetReportCreateRequestOptions
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source
. Read more