Struct ReportingLenderSchema

Source
pub struct ReportingLenderSchema {
Show 25 fields pub user_id: String, pub nmls_id: Option<String>, pub branch_id: Option<String>, pub employee_id: Option<String>, pub full_name: String, pub email: String, pub user_roles: Option<String>, pub los_username: Option<String>, pub activation_datetime: Option<String>, pub invited_datetime: Option<String>, pub last_login_datetime: Option<String>, pub total_created_applications: Option<f64>, pub borrower_submits: Option<f64>, pub percent_loans_submitted: Option<f64>, pub percent_submits_with_gas: Option<f64>, pub last_borrower_submit_datetime: Option<String>, pub average_nps_score: Option<f64>, pub calculated_nps_score: Option<f64>, pub percent_loans_utilizing_followups: Option<f64>, pub followups_manually_requested: Option<f64>, pub followups_borrower_completed: Option<f64>, pub followups_pending: Option<f64>, pub followups_accepted: Option<f64>, pub followups_rejected: Option<f64>, pub as_of_date: Option<String>,
}

Fields§

§user_id: String

Unique User ID associated with the Lender User

§nmls_id: Option<String>

The NMLS ID of the lender

§branch_id: Option<String>

The Branch ID entered into the lender user profile (optional field maintained manually by the client)

§employee_id: Option<String>

The lender user’s employee ID (optional field maintained manually by the client)

§full_name: String

The full name of the lender

§email: String

The email address of the lender

§user_roles: Option<String>

A comma separated list of user roles attributed to the lender

§los_username: Option<String>

The lender user’s LOS Username in Blend

§activation_datetime: Option<String>

The UTC timestamp for when the lender user accepted Terms of Service

§invited_datetime: Option<String>

The invitation time of the lender (in UTC)

§last_login_datetime: Option<String>

The UTC timestamp for the last time the account was opened/used

§total_created_applications: Option<f64>

The total number of created application applications assigned to the lender user in the last 90 days

§borrower_submits: Option<f64>

The total number of loans submitted by the borrower with this lender as the primary assignee

§percent_loans_submitted: Option<f64>

The percent of loans submitted out of the total number of created applications assigned to the lender user

§percent_submits_with_gas: Option<f64>

The percent of submitted loans with a Generated Asset Statement on the previous date

§last_borrower_submit_datetime: Option<String>

The UTC timestamp for the last time the account was opened/used

§average_nps_score: Option<f64>

The average NPS score of all submitted applications assigned to the lender user

§calculated_nps_score: Option<f64>

The calculated NPS score of all submitted applications assigned to the lender user

§percent_loans_utilizing_followups: Option<f64>

The percent of the lender user’s loans utilizing follow-ups within the date filters provided

§followups_manually_requested: Option<f64>

The number of manually requested follow-ups by the lender user within the date filters provided

§followups_borrower_completed: Option<f64>

The number of follow-ups requested by this lender within the date filters provided that were completed by borrowers

§followups_pending: Option<f64>

The number of follow-ups requested within the date filters that have not been completed by the borrower

§followups_accepted: Option<f64>

The number of follow-ups requested within the date filters that were accepted by this lender

§followups_rejected: Option<f64>

The number of follow-ups requested within the date filters that were rejected by this lender

§as_of_date: Option<String>

The date that the report was generated

Trait Implementations§

Source§

impl Debug for ReportingLenderSchema

Source§

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

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

impl<'de> Deserialize<'de> for ReportingLenderSchema

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 ReportingLenderSchema

Source§

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

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

impl Serialize for ReportingLenderSchema

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>,