pub struct LenderUpdateRequestSchema {Show 14 fields
pub id: String,
pub email: Option<String>,
pub name: Option<String>,
pub permitted_solution_sub_types: Option<String>,
pub require_two_factor_auth: Option<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 credit_internal_account_identifiers: Option<CreditInternalAccountIdentifiers>,
pub licensed_states: Option<Vec<String>>,
}
Fields§
§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.
email: Option<String>
Lender Email. This can only be updated for SSO users. Note that you must submit a Blend Support request to enable the “Allow SSO lender email updates through API” configuration to enable this field.
name: Option<String>
Lender Full Name
permitted_solution_sub_types: Option<String>
Allowable solution type
require_two_factor_auth: Option<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
credit_internal_account_identifiers: Option<CreditInternalAccountIdentifiers>
§licensed_states: Option<Vec<String>>
States Lender is licensed in
Trait Implementations§
Source§impl Debug for LenderUpdateRequestSchema
impl Debug for LenderUpdateRequestSchema
Source§impl<'de> Deserialize<'de> for LenderUpdateRequestSchema
impl<'de> Deserialize<'de> for LenderUpdateRequestSchema
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 LenderUpdateRequestSchema
impl Display for LenderUpdateRequestSchema
Auto Trait Implementations§
impl Freeze for LenderUpdateRequestSchema
impl RefUnwindSafe for LenderUpdateRequestSchema
impl Send for LenderUpdateRequestSchema
impl Sync for LenderUpdateRequestSchema
impl Unpin for LenderUpdateRequestSchema
impl UnwindSafe for LenderUpdateRequestSchema
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