pub struct CreateTokenPersonRelationship {
pub director: Option<bool>,
pub executive: Option<bool>,
pub legal_guardian: Option<bool>,
pub owner: Option<bool>,
pub percent_ownership: Option<f64>,
pub representative: Option<bool>,
pub title: Option<String>,
}
Fields§
§director: Option<bool>
Whether the person is a director of the account’s legal entity.
Directors are typically members of the governing board of the company, or responsible for ensuring the company meets its regulatory obligations.
executive: Option<bool>
Whether the person has significant responsibility to control, manage, or direct the organization.
legal_guardian: Option<bool>
Whether the person is the legal guardian of the account’s representative.
owner: Option<bool>
Whether the person is an owner of the account’s legal entity.
percent_ownership: Option<f64>
The percent owned by the person of the account’s legal entity.
representative: Option<bool>
Whether the person is authorized as the primary representative of the account.
This is the person nominated by the business to provide information about themselves, and general information about the account. There can only be one representative at any given time. At the time the account is created, this person should be set to the person responsible for opening the account.
title: Option<String>
The person’s title (e.g., CEO, Support Engineer).
Trait Implementations§
source§impl Clone for CreateTokenPersonRelationship
impl Clone for CreateTokenPersonRelationship
source§fn clone(&self) -> CreateTokenPersonRelationship
fn clone(&self) -> CreateTokenPersonRelationship
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateTokenPersonRelationship
impl Default for CreateTokenPersonRelationship
source§fn default() -> CreateTokenPersonRelationship
fn default() -> CreateTokenPersonRelationship
source§impl<'de> Deserialize<'de> for CreateTokenPersonRelationship
impl<'de> Deserialize<'de> for CreateTokenPersonRelationship
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>,
Auto Trait Implementations§
impl Freeze for CreateTokenPersonRelationship
impl RefUnwindSafe for CreateTokenPersonRelationship
impl Send for CreateTokenPersonRelationship
impl Sync for CreateTokenPersonRelationship
impl Unpin for CreateTokenPersonRelationship
impl UnwindSafe for CreateTokenPersonRelationship
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)