Struct ReportingDataVerificationUsageSchema

Source
pub struct ReportingDataVerificationUsageSchema {
Show 18 fields pub week: String, pub number_loans_submitted: f64, pub number_gas_generated: f64, pub number_loans_with_gas: f64, pub percent_submits_with_gas: f64, pub number_assets_statement_fallback: Option<f64>, pub number_loans_with_assets_statement_fallback: Option<f64>, pub percent_submits_with_assets_statement_fallback: Option<f64>, pub number_asset_verification: Option<f64>, pub number_loans_with_asset_verification: Option<f64>, pub percent_submits_with_asset_verification: Option<f64>, pub number_blend_income_verifications: Option<f64>, pub number_loans_with_blend_income_verification: Option<f64>, pub percent_submits_with_blend_income_verification: Option<f64>, pub number_twn_instant_attempt: f64, pub number_twn_instant_success: f64, pub as_of_date: String, pub deployment: Option<String>,
}

Fields§

§week: String

The start date of the week

§number_loans_submitted: f64

The total number of borrower submitted loans for the week

§number_gas_generated: f64

The total number of Generated Asset Statements (GAS) on submitted loans for that week. This only includes instances where a GAS was created from source data in a borrower’s bank account that is eligible for GSE rep and warrant programs (D1C/AIM). GAS does not include successful asset connectivity in cases that Blend is unable to access high enough quality source data for the GSE programs, but will pull a PDF instead and the borrower will not be prompted to upload bank statements (Assets Statement Fallback)

§number_loans_with_gas: f64

The total number of borrower submitted loans that week that have at least one Generated Asset Statement - this number does not include Assets Statement (PDF) Fallbacks; see description above

§percent_submits_with_gas: f64

The percent of borrower submitted loans that week that have at least one Generated Asset Statement - this percentage does not include Assets Statement (PDF) Fallbacks; see description above

§number_assets_statement_fallback: Option<f64>

The total number of Assets Statement (PDF) Fallbacks created on submitted loans for that week. An Assets Statement Fallback is generated in cases where Blend is unable to access high enough quality source data for the GSE programs to generate a GAS, but will pull a PDF instead and the borrower will not be prompted to upload bank statements; this number does not include Generated Asset Statements (GAS) that are eligible for GSE rep and warrant programs (D1C/AIM)

§number_loans_with_assets_statement_fallback: Option<f64>

The total number of borrower submitted loans that week that have at least one Asset Statement (PDF) Fallback - this number does not include Generated Asset Statements; see description above

§percent_submits_with_assets_statement_fallback: Option<f64>

The percent of borrower submitted loans that week that have at least one Asset Statement (PDF) Fallback - this number does not include Generated Asset Statements; see description above

§number_asset_verification: Option<f64>

The total number of Asset Verifications for borrower submitted loans that week, including either Generated Asset Statements (GAS) or Asset Statement Fallbacks (PDF Fallbacks); see descriptions above for details

§number_loans_with_asset_verification: Option<f64>

The total number of borrower submitted loans that have at least one Asset Verification, including either Generated Asset Statements (GAS) or Asset Statement Fallbacks (PDF Fallbacks); see descriptions above for details

§percent_submits_with_asset_verification: Option<f64>

The percent of borrower submitted loans that have at least one Asset Verification, including either Generated Asset Statements (GAS) or Asset Statement Fallbacks (PDF Fallbacks); see descriptions above for details

§number_blend_income_verifications: Option<f64>

The total number of Blend Income Reports generated on borrower submitted loans in that week

§number_loans_with_blend_income_verification: Option<f64>

The total number of borrower submitted loans for that week with at least one Blend Income Verification

§percent_submits_with_blend_income_verification: Option<f64>

The percent of borrower submitted loans for that week with at least one Blend Income Verification

§number_twn_instant_attempt: f64

The total number of TWN instant attempts for that week

§number_twn_instant_success: f64

The total number of TWN instant successes for that week

§as_of_date: String

The effective date of the report

§deployment: Option<String>

The tenant making the API call

Trait Implementations§

Source§

impl Debug for ReportingDataVerificationUsageSchema

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for ReportingDataVerificationUsageSchema

Source§

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 ReportingDataVerificationUsageSchema

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Serialize for ReportingDataVerificationUsageSchema

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,