[][src]Struct stripe::PersonRequirements

pub struct PersonRequirements {
    pub currently_due: Vec<String>,
    pub eventually_due: Vec<String>,
    pub past_due: Vec<String>,
}

Fields

currently_due: Vec<String>

Fields that need to be collected to keep the person's account enabled.

If not collected by the account's current_deadline, these fields are moved to past_due and the account is disabled.

eventually_due: Vec<String>

Fields that need to be collected assuming all volume thresholds are reached.

As fields are needed, they are moved to currently_due and the account's current_deadline is set.

past_due: Vec<String>

Fields that weren't collected by the account's current_deadline.

These fields need to be collected to enable payouts for the person's account.

Trait Implementations

impl Clone for PersonRequirements[src]

impl Debug for PersonRequirements[src]

impl Serialize for PersonRequirements[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<T> Same<T> for T

type Output = T

Should always be Self