pub struct Party {
pub id: String,
pub name: String,
pub email: Option<String>,
pub phone: Option<String>,
pub addresses: Option<Vec<Address>>,
pub tax_number: Option<String>,
pub meta: Option<Value>,
}Expand description
Party information from enduring access
Contains customer profile information from financial institutions. This is returned from the GET /parties endpoint.
Fields§
§id: StringUnique identifier
name: StringParty name
email: Option<String>Email address
phone: Option<String>Phone number
addresses: Option<Vec<Address>>Addresses associated with this party
tax_number: Option<String>Tax identification number
meta: Option<Value>Additional metadata
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Party
impl<'de> Deserialize<'de> for Party
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
impl Eq for Party
impl StructuralPartialEq for Party
Auto Trait Implementations§
impl Freeze for Party
impl RefUnwindSafe for Party
impl Send for Party
impl Sync for Party
impl Unpin for Party
impl UnwindSafe for Party
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