pub struct ReportingActivitySchema {
pub loan_id: String,
pub loan_number: Option<String>,
pub activity_id: String,
pub user_id: String,
pub type_: Option<String>,
pub started_datetime: Option<String>,
pub completed_datetime: Option<String>,
}
Fields§
§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.
activity_id: String
Activity id
user_id: String
User id
type_: Option<String>
Activity type
started_datetime: Option<String>
Start time of the activity (in UTC)
completed_datetime: Option<String>
Completion time of the activity (in UTC)
Trait Implementations§
Source§impl Debug for ReportingActivitySchema
impl Debug for ReportingActivitySchema
Source§impl<'de> Deserialize<'de> for ReportingActivitySchema
impl<'de> Deserialize<'de> for ReportingActivitySchema
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 ReportingActivitySchema
impl Display for ReportingActivitySchema
Auto Trait Implementations§
impl Freeze for ReportingActivitySchema
impl RefUnwindSafe for ReportingActivitySchema
impl Send for ReportingActivitySchema
impl Sync for ReportingActivitySchema
impl Unpin for ReportingActivitySchema
impl UnwindSafe for ReportingActivitySchema
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