pub struct PartyResponseSchema {
pub id: String,
pub application_id: String,
pub type_: String,
pub email: Option<String>,
pub name: Option<NameSchema>,
pub los_party_id: Option<String>,
pub econsent: Option<EconsentSchema>,
pub custom_fields: Option<CustomFields>,
pub custom_metadata: Option<CustomMetadata>,
}
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<NameSchema>
§los_party_id: Option<String>
Party ID in LOS
econsent: Option<EconsentSchema>
§custom_fields: Option<CustomFields>
Custom fields on GET responses for supported resources
custom_metadata: Option<CustomMetadata>
Custom metadata on GET responses for supported resources
Trait Implementations§
Source§impl Debug for PartyResponseSchema
impl Debug for PartyResponseSchema
Source§impl<'de> Deserialize<'de> for PartyResponseSchema
impl<'de> Deserialize<'de> for PartyResponseSchema
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 PartyResponseSchema
impl Display for PartyResponseSchema
Auto Trait Implementations§
impl Freeze for PartyResponseSchema
impl RefUnwindSafe for PartyResponseSchema
impl Send for PartyResponseSchema
impl Sync for PartyResponseSchema
impl Unpin for PartyResponseSchema
impl UnwindSafe for PartyResponseSchema
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