Struct stripe::PersonRelationship[][src]

pub struct PersonRelationship {
    pub director: Option<bool>,
    pub executive: 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.

Currently only required for accounts in the EU. 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.

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

impl Clone for PersonRelationship[src]

impl Debug for PersonRelationship[src]

impl<'de> Deserialize<'de> for PersonRelationship[src]

impl Serialize for PersonRelationship[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]