pub struct LosMilestoneSchema {
pub los_milestone: Option<String>,
pub application_id: Option<String>,
}
Fields§
§los_milestone: Option<String>
ENUM describing that status of the application. The following milestones can be configured to be displayed to the Borrower on their landing page after submitting their application in Blend (SUBMITTED, PROCESSING, UNDERWRITING, CONDITIONAL APPROVAL, APPROVED, CLOSING, CLOSED, FUNDED). The other milestones are only visible to the lender application.
application_id: Option<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.
Trait Implementations§
Source§impl Debug for LosMilestoneSchema
impl Debug for LosMilestoneSchema
Source§impl<'de> Deserialize<'de> for LosMilestoneSchema
impl<'de> Deserialize<'de> for LosMilestoneSchema
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 LosMilestoneSchema
impl Display for LosMilestoneSchema
Auto Trait Implementations§
impl Freeze for LosMilestoneSchema
impl RefUnwindSafe for LosMilestoneSchema
impl Send for LosMilestoneSchema
impl Sync for LosMilestoneSchema
impl Unpin for LosMilestoneSchema
impl UnwindSafe for LosMilestoneSchema
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more