Struct stripe::PersonRequirements[][src]

pub struct PersonRequirements {
    pub currently_due: Vec<String>,
    pub errors: Vec<AccountRequirementsError>,
    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.

errors: Vec<AccountRequirementsError>

The fields that are currently_due and need to be collected again because validation or verification failed for some reason.

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>

Fields that may become required depending on the results of verification or review.

An empty array unless an asynchronous verification is pending. If verification fails, the fields in this array become required and move to 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: 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]