pub struct LendingLenderRecordSchema {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<LendingCreditInternalAccountIdentifiers>>,
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>>
Set of allowable solution types
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
The user’s status in Blend
credit_internal_account_identifiers: Option<Vec<LendingCreditInternalAccountIdentifiers>>
List of all the active creditInternalAccountIdentifiers
licensed_states: Option<Vec<String>>
States Lender is licensed in
Trait Implementations§
Source§impl Debug for LendingLenderRecordSchema
impl Debug for LendingLenderRecordSchema
Source§impl<'de> Deserialize<'de> for LendingLenderRecordSchema
impl<'de> Deserialize<'de> for LendingLenderRecordSchema
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 LendingLenderRecordSchema
impl Display for LendingLenderRecordSchema
Auto Trait Implementations§
impl Freeze for LendingLenderRecordSchema
impl RefUnwindSafe for LendingLenderRecordSchema
impl Send for LendingLenderRecordSchema
impl Sync for LendingLenderRecordSchema
impl Unpin for LendingLenderRecordSchema
impl UnwindSafe for LendingLenderRecordSchema
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