Struct stripe::AccountFutureRequirements
source · [−]pub struct AccountFutureRequirements {
pub alternatives: Option<Vec<AccountRequirementsAlternative>>,
pub current_deadline: Option<Timestamp>,
pub currently_due: Option<Vec<String>>,
pub disabled_reason: Option<String>,
pub errors: Option<Vec<AccountRequirementsError>>,
pub eventually_due: Option<Vec<String>>,
pub past_due: Option<Vec<String>>,
pub pending_verification: Option<Vec<String>>,
}
Fields
alternatives: Option<Vec<AccountRequirementsAlternative>>
Fields that are due and can be satisfied by providing the corresponding alternative fields instead.
current_deadline: Option<Timestamp>
Date on which future_requirements
merges with the main requirements
hash and future_requirements
becomes empty.
After the transition, currently_due
requirements may immediately become past_due
, but the account may also be given a grace period depending on its enablement state prior to transitioning.
currently_due: Option<Vec<String>>
Fields that need to be collected to keep the account enabled.
If not collected by future_requirements[current_deadline]
, these fields will transition to the main requirements
hash.
disabled_reason: Option<String>
This is typed as a string for consistency with requirements.disabled_reason
, but it safe to assume future_requirements.disabled_reason
is empty because fields in future_requirements
will never disable the account.
errors: Option<Vec<AccountRequirementsError>>
Fields that are currently_due
and need to be collected again because validation or verification failed.
eventually_due: Option<Vec<String>>
Fields that need to be collected assuming all volume thresholds are reached.
As they become required, they appear in currently_due
as well.
past_due: Option<Vec<String>>
Fields that weren’t collected by requirements.current_deadline
.
These fields need to be collected to enable the capability on the account.
New fields will never appear here; future_requirements.past_due
will always be a subset of requirements.past_due
.
pending_verification: Option<Vec<String>>
Fields that may become required depending on the results of verification or review.
Will be an empty array unless an asynchronous verification is pending.
If verification fails, these fields move to eventually_due
or currently_due
.
Trait Implementations
sourceimpl Clone for AccountFutureRequirements
impl Clone for AccountFutureRequirements
sourcefn clone(&self) -> AccountFutureRequirements
fn clone(&self) -> AccountFutureRequirements
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AccountFutureRequirements
impl Debug for AccountFutureRequirements
sourceimpl Default for AccountFutureRequirements
impl Default for AccountFutureRequirements
sourcefn default() -> AccountFutureRequirements
fn default() -> AccountFutureRequirements
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AccountFutureRequirements
impl<'de> Deserialize<'de> for AccountFutureRequirements
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for AccountFutureRequirements
impl Serialize for AccountFutureRequirements
Auto Trait Implementations
impl RefUnwindSafe for AccountFutureRequirements
impl Send for AccountFutureRequirements
impl Sync for AccountFutureRequirements
impl Unpin for AccountFutureRequirements
impl UnwindSafe for AccountFutureRequirements
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more