pub struct LendingPartyResponseSchema {
pub id: String,
pub application_id: String,
pub type_: String,
pub email: Option<String>,
pub name: Option<LendingNameSchema>,
pub los_party_id: Option<String>,
pub econsent: Option<Value>,
pub custom_fields: Option<Value>,
pub custom_metadata: Option<Value>,
}
Fields§
§id: String
The UUID of the Party in Blend’s system. The static identifier that should be used to connect the party’s identity across Blend and external integrations.
application_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.
type_: String
§email: Option<String>
§name: Option<LendingNameSchema>
§los_party_id: Option<String>
Party ID in LOS
econsent: Option<Value>
§custom_fields: Option<Value>
§custom_metadata: Option<Value>
Trait Implementations§
Source§impl Debug for LendingPartyResponseSchema
impl Debug for LendingPartyResponseSchema
Source§impl<'de> Deserialize<'de> for LendingPartyResponseSchema
impl<'de> Deserialize<'de> for LendingPartyResponseSchema
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 LendingPartyResponseSchema
impl Display for LendingPartyResponseSchema
Auto Trait Implementations§
impl Freeze for LendingPartyResponseSchema
impl RefUnwindSafe for LendingPartyResponseSchema
impl Send for LendingPartyResponseSchema
impl Sync for LendingPartyResponseSchema
impl Unpin for LendingPartyResponseSchema
impl UnwindSafe for LendingPartyResponseSchema
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