pub enum CreateAccountLinkType {
AccountOnboarding,
AccountUpdate,
}
Expand description
The type of account link the user is requesting.
You can create Account Links of type account_update
only for connected accounts where your platform is responsible for collecting requirements, including Custom accounts.
You can’t create them for accounts that have access to a Stripe-hosted Dashboard.
If you use Connect embedded components, you can include components that allow your connected accounts to update their own information.
For an account without Stripe-hosted Dashboard access where Stripe is liable for negative balances, you must use embedded components.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CreateAccountLinkType
impl Clone for CreateAccountLinkType
Source§fn clone(&self) -> CreateAccountLinkType
fn clone(&self) -> CreateAccountLinkType
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 moreSource§impl Debug for CreateAccountLinkType
impl Debug for CreateAccountLinkType
Source§impl Display for CreateAccountLinkType
impl Display for CreateAccountLinkType
Source§impl FromStr for CreateAccountLinkType
impl FromStr for CreateAccountLinkType
Source§impl PartialEq for CreateAccountLinkType
impl PartialEq for CreateAccountLinkType
Source§impl Serialize for CreateAccountLinkType
impl Serialize for CreateAccountLinkType
impl Copy for CreateAccountLinkType
impl Eq for CreateAccountLinkType
impl StructuralPartialEq for CreateAccountLinkType
Auto Trait Implementations§
impl Freeze for CreateAccountLinkType
impl RefUnwindSafe for CreateAccountLinkType
impl Send for CreateAccountLinkType
impl Sync for CreateAccountLinkType
impl Unpin for CreateAccountLinkType
impl UnwindSafe for CreateAccountLinkType
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