pub struct AssociatedEntity {
pub associated_persons: Option<Vec<AssociatedPerson>>,
pub associations: Option<Vec<String>>,
pub email: Option<String>,
pub entity_id: Option<i32>,
pub external_code: Option<String>,
pub identity_documents: Option<Vec<HashMap<String, String>>>,
pub mailing: Option<HashMap<String, String>>,
pub name: Option<String>,
pub organization_country: Option<String>,
pub phones: Option<HashMap<String, String>>,
pub residence: Option<HashMap<String, String>>,
pub tax_treaty_details: Option<Vec<HashMap<String, String>>>,
}Fields§
§associated_persons: Option<Vec<AssociatedPerson>>§associations: Option<Vec<String>>§email: Option<String>§entity_id: Option<i32>§external_code: Option<String>§identity_documents: Option<Vec<HashMap<String, String>>>§mailing: Option<HashMap<String, String>>§name: Option<String>§organization_country: Option<String>§phones: Option<HashMap<String, String>>§residence: Option<HashMap<String, String>>§tax_treaty_details: Option<Vec<HashMap<String, String>>>Trait Implementations§
Source§impl Clone for AssociatedEntity
impl Clone for AssociatedEntity
Source§fn clone(&self) -> AssociatedEntity
fn clone(&self) -> AssociatedEntity
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AssociatedEntity
impl Debug for AssociatedEntity
Source§impl Default for AssociatedEntity
impl Default for AssociatedEntity
Source§impl<'de> Deserialize<'de> for AssociatedEntity
impl<'de> Deserialize<'de> for AssociatedEntity
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 PartialEq for AssociatedEntity
impl PartialEq for AssociatedEntity
impl StructuralPartialEq for AssociatedEntity
Auto Trait Implementations§
impl Freeze for AssociatedEntity
impl RefUnwindSafe for AssociatedEntity
impl Send for AssociatedEntity
impl Sync for AssociatedEntity
impl Unpin for AssociatedEntity
impl UnsafeUnpin for AssociatedEntity
impl UnwindSafe for AssociatedEntity
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