pub struct LenderRecordSchema {Show 17 fields
pub name: Option<String>,
pub first_name: Option<String>,
pub last_name: Option<String>,
pub email: Option<String>,
pub permitted_solution_sub_types: Option<Vec<String>>,
pub require_two_factor_auth: bool,
pub login_method: Option<String>,
pub role_names: Option<Vec<String>>,
pub phone: Option<Value>,
pub nmls_id: Option<String>,
pub los_username: Option<String>,
pub employee_id: Option<String>,
pub branch_id: Option<String>,
pub id: String,
pub status: String,
pub credit_internal_account_identifiers: Option<Vec<CreditInternalAccountIdentifiers>>,
pub licensed_states: Option<Vec<String>>,
}
Fields§
§name: Option<String>
Lender Full Name
first_name: Option<String>
Lender First Name
last_name: Option<String>
Lender Last Name
email: Option<String>
Lender Email
permitted_solution_sub_types: Option<Vec<String>>
Loan Subtypes Permitted
require_two_factor_auth: bool
MFA Required
login_method: Option<String>
Login Method
role_names: Option<Vec<String>>
Roles for Lender
phone: Option<Value>
§nmls_id: Option<String>
Nationwide Multistate Licensing System ID number
los_username: Option<String>
Lender’s LOS Username
employee_id: Option<String>
Lender’s Employee Id
branch_id: Option<String>
Lender’s Branch Id
id: String
The UUID of the Lender User in Blend’s system. The static identifier that should be used to connect the user’s identity across Blend and external integrations.
status: String
ENUM describing the Lender User’s status in Blend
credit_internal_account_identifiers: Option<Vec<CreditInternalAccountIdentifiers>>
List of all the active creditInternalAccountIdentifiers
licensed_states: Option<Vec<String>>
States Lender is licensed in
Trait Implementations§
Source§impl Debug for LenderRecordSchema
impl Debug for LenderRecordSchema
Source§impl<'de> Deserialize<'de> for LenderRecordSchema
impl<'de> Deserialize<'de> for LenderRecordSchema
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 LenderRecordSchema
impl Display for LenderRecordSchema
Auto Trait Implementations§
impl Freeze for LenderRecordSchema
impl RefUnwindSafe for LenderRecordSchema
impl Send for LenderRecordSchema
impl Sync for LenderRecordSchema
impl Unpin for LenderRecordSchema
impl UnwindSafe for LenderRecordSchema
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