Struct ReportingFollowupsSchema

Source
pub struct ReportingFollowupsSchema {
Show 22 fields pub follow_up_id: String, pub loan_id: String, pub loan_number: Option<String>, pub loan_type: Option<String>, pub request_type: Option<String>, pub follow_up_type: Option<String>, pub follow_up_text: Option<String>, pub follow_up_created_datetime: Option<String>, pub current_status: Option<String>, pub requested_datetime: Option<String>, pub requested_user_id: Option<String>, pub requested_user_name: Option<String>, pub requested_user_email: Option<String>, pub completed_datetime: Option<String>, pub completed_user_id: Option<String>, pub review_action: Option<String>, pub reviewed_datetime: Option<String>, pub reviewed_user_id: Option<String>, pub cancelled_datetime: Option<String>, pub cancelled_user_id: Option<String>, pub as_of_date: String, pub client_followup_reference_id: Option<String>,
}

Fields§

§follow_up_id: String

The UUID of the followup in Blend’s system. The static identifier that should be used to access followups across Blend and external integrations.

§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)

§request_type: Option<String>

The type of request that created the followup. Can be AUTOMATED, MANUAL, or SUGGESTED

§follow_up_type: Option<String>

The followup requested

§follow_up_text: Option<String>

Optional text containing additional details about the follow-up. Can be set by Blend, or custom text

§follow_up_created_datetime: Option<String>

The timestamp when the followup was created in Blend

§current_status: Option<String>

The current status of the followup. Can be Suggested, Declined, Requested, Pending Review, Completed, Completed Externally, Rejected, Cancelled

§requested_datetime: Option<String>

The UTC timestamp when the followup was requested

§requested_user_id: Option<String>

The user_id that requested the followup. Can be ‘system’ or a Lender User ID

§requested_user_name: Option<String>

Full name of the Lender User that requested the followup

§requested_user_email: Option<String>

Email address of the Lender User that requested the followup

§completed_datetime: Option<String>

The timestamp when the followup was completed by the borrower

§completed_user_id: Option<String>

The User ID that completed the followup (generally associated with a Borrower)

§review_action: Option<String>

The action taken by the reviewing lender. Can be ACCEPT or REJECT.

§reviewed_datetime: Option<String>

The timestamp when the follow-up was reviewed (in UTC)

§reviewed_user_id: Option<String>

The Lender User ID that reviewed the followup

§cancelled_datetime: Option<String>

The timestamp when the followup was cancelled (in UTC)

§cancelled_user_id: Option<String>

The lender User ID that cancelled the followup

§as_of_date: String

The date that the report was generated

§client_followup_reference_id: Option<String>

Unique id passed by client for referencing follow-up

Trait Implementations§

Source§

impl Debug for ReportingFollowupsSchema

Source§

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

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

impl<'de> Deserialize<'de> for ReportingFollowupsSchema

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 ReportingFollowupsSchema

Source§

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

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

impl Serialize for ReportingFollowupsSchema

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