[][src]Struct stripe::PersonRequirements

pub struct PersonRequirements {
    pub currently_due: Vec<String>,
    pub eventually_due: Vec<String>,
    pub past_due: Vec<String>,
    pub pending_verification: 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 appear in past_due as well, 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.

pending_verification: Vec<String>

Additional fields that may be required depending on the results of verification or review for provided requirements.

If any of these fields become required, they appear in currently_due or past_due.

Trait Implementations

impl Clone for PersonRequirements[src]

impl Debug for PersonRequirements[src]

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

impl Serialize for PersonRequirements[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: 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.