pub struct AssetReport {
    pub asset_report_id: AssetReportId,
    pub client_report_id: Option<String>,
    pub date_generated: String,
    pub days_requested: f64,
    pub user: AssetReportUser,
    pub items: Vec<AssetReportItem>,
}

Fields

asset_report_id: AssetReportId

A unique ID identifying an Asset Report. Like all Plaid identifiers, this ID is case sensitive.

client_report_id: Option<String>

An identifier you determine and submit for the Asset Report.

date_generated: String

The date and time when the Asset Report was created, in ISO 8601 format (e.g. “2018-04-12T03:32:11Z”).

days_requested: f64

The duration of transaction history you requested

user: 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.

items: Vec<AssetReportItem>

Data returned by Plaid about each of the Items included in the Asset Report.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more