pub struct CreateAccountLinkCollectionOptions {
pub fields: Option<CreateAccountLinkCollectionOptionsFields>,
pub future_requirements: Option<CreateAccountLinkCollectionOptionsFutureRequirements>,
}
Expand description
Specifies the requirements that Stripe collects from connected accounts in the Connect Onboarding flow.
Fields§
§fields: Option<CreateAccountLinkCollectionOptionsFields>
Specifies whether the platform collects only currently_due requirements (currently_due
) or both currently_due and eventually_due requirements (eventually_due
).
If you don’t specify collection_options
, the default value is currently_due
.
future_requirements: Option<CreateAccountLinkCollectionOptionsFutureRequirements>
Specifies whether the platform collects future_requirements in addition to requirements in Connect Onboarding.
The default value is omit
.
Implementations§
Trait Implementations§
Source§impl Clone for CreateAccountLinkCollectionOptions
impl Clone for CreateAccountLinkCollectionOptions
Source§fn clone(&self) -> CreateAccountLinkCollectionOptions
fn clone(&self) -> CreateAccountLinkCollectionOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for CreateAccountLinkCollectionOptions
Auto Trait Implementations§
impl Freeze for CreateAccountLinkCollectionOptions
impl RefUnwindSafe for CreateAccountLinkCollectionOptions
impl Send for CreateAccountLinkCollectionOptions
impl Sync for CreateAccountLinkCollectionOptions
impl Unpin for CreateAccountLinkCollectionOptions
impl UnwindSafe for CreateAccountLinkCollectionOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more