[][src]Struct stripe::PersonRelationship

pub struct PersonRelationship {
    pub account_opener: Option<bool>,
    pub director: Option<bool>,
    pub executive: Option<bool>,
    pub owner: Option<bool>,
    pub percent_ownership: Option<f64>,
    pub title: Option<String>,
}

Fields

account_opener: Option<bool>

Whether the person opened the account.

This person provides information about themselves, and general information about the account.

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.

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, 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.