Struct ReportingLenderPabActivitiesSchema

Source
pub struct ReportingLenderPabActivitiesSchema {
Show 19 fields pub activity_id: String, pub loan_id: String, pub loan_number: Option<String>, pub loan_type: Option<String>, pub loan_purpose_type: Option<String>, pub app_lead_source: Option<String>, pub user_id: Option<String>, pub user_type: Option<String>, pub lender_user_name: Option<String>, pub lender_user_email: Option<String>, pub activity_type: Option<String>, pub activity_datetime: Option<String>, pub activity_success: Option<bool>, pub credit_pulltype: Option<String>, pub credit_bureaus: Option<String>, pub credit_bureautype: Option<String>, pub credit_joint: Option<bool>, pub credit_actiontype: Option<String>, pub du_recommendation: Option<String>,
}

Fields§

§activity_id: String

Unique ID of the activity

§loan_id: String

The UUID of the application in Blend’s system. The static identifier that should be used to connect the application’s identity across Blend and external integrations.

§loan_number: Option<String>

A mutable identifier of the application. Not safe to use to connect the application’s identity across Blend and external systems because it can and (for most implementations) will change. Default value is an incremented ID set by Blend. Other Values could be LOS GUID after export of the loan to LOS (may be the same as the losID field or different), Can be manually set to anything by lenders in the UI or programmatically via the API.

§loan_type: Option<String>

The specific product (Mortgage, HELOAN, HELOC, Auto, etc)

§loan_purpose_type: Option<String>

REFINANCE or PURCHASE for Mortgage loans. Will be set to OTHER or null for other loan types.

§app_lead_source: Option<String>

Specifies how an app was created (BORROWER, LENDER, INGEST, PUBLIC_API)

§user_id: Option<String>

User ID for the user that completed the action (can be the user ID for a borrower or lender, or ‘system’)

§user_type: Option<String>

The type for the user that completed the action. Can be system, borrower, or lender

§lender_user_name: Option<String>

If userType is a lender, the full name of the lender user that completed the activity

§lender_user_email: Option<String>

If userType is a lender, the email address of the lender user that completed the activity

§activity_type: Option<String>

Which PAB Activity was done on the loan. Can be ‘ecoa updated’, ‘pulled credit’ ‘selected a product’ ‘sent pre-approval letter’ ‘ran desktop underwriter’

§activity_datetime: Option<String>

The UTC timestamp for when the activity was done on the loan

§activity_success: Option<bool>

Field indicating whether the activity was successful or not

§credit_pulltype: Option<String>

For credit pull events - the type of credit pull (Hard or Soft)

§credit_bureaus: Option<String>

For credit pull events - a JSON array containing the bureaus where credit was pulled from

§credit_bureautype: Option<String>

For credit pull events - the type of pull (single or tri)

§credit_joint: Option<bool>

For credit pull events - if the credit was pulled jointly.

§credit_actiontype: Option<String>

For credit pull events - the action on the pull

§du_recommendation: Option<String>

For desktop underwriting events - what the recommendation is

Trait Implementations§

Source§

impl Debug for ReportingLenderPabActivitiesSchema

Source§

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

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

impl<'de> Deserialize<'de> for ReportingLenderPabActivitiesSchema

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 ReportingLenderPabActivitiesSchema

Source§

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

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

impl Serialize for ReportingLenderPabActivitiesSchema

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