pub struct CreateTokenAccountIndividualRelationship {
pub director: Option<bool>,
pub executive: Option<bool>,
pub owner: Option<bool>,
pub percent_ownership: Option<f64>,
pub title: Option<String>,
}
Expand description
Describes the person’s relationship to the account.
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.
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.
title: Option<String>
The person’s title (e.g., CEO, Support Engineer).
Implementations§
Trait Implementations§
Source§impl Clone for CreateTokenAccountIndividualRelationship
impl Clone for CreateTokenAccountIndividualRelationship
Source§fn clone(&self) -> CreateTokenAccountIndividualRelationship
fn clone(&self) -> CreateTokenAccountIndividualRelationship
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 moreAuto Trait Implementations§
impl Freeze for CreateTokenAccountIndividualRelationship
impl RefUnwindSafe for CreateTokenAccountIndividualRelationship
impl Send for CreateTokenAccountIndividualRelationship
impl Sync for CreateTokenAccountIndividualRelationship
impl Unpin for CreateTokenAccountIndividualRelationship
impl UnwindSafe for CreateTokenAccountIndividualRelationship
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