pub struct CreateAccountSessionComponentsIssuingCardsListFeatures {
pub card_management: Option<bool>,
pub card_spend_dispute_management: Option<bool>,
pub cardholder_management: Option<bool>,
pub disable_stripe_user_authentication: Option<bool>,
pub spend_control_management: Option<bool>,
}
Expand description
The list of features enabled in the embedded component.
Fields§
§card_management: Option<bool>
Whether to allow card management features.
card_spend_dispute_management: Option<bool>
Whether to allow card spend dispute management features.
cardholder_management: Option<bool>
Whether to allow cardholder management features.
disable_stripe_user_authentication: Option<bool>
Whether Stripe user authentication is disabled.
This value can only be true
for accounts where controller.requirement_collection
is application
for the account.
The default value is the opposite of the external_account_collection
value.
For example, if you don’t set external_account_collection
, it defaults to true
and disable_stripe_user_authentication
defaults to false
.
spend_control_management: Option<bool>
Whether to allow spend control management features.
Implementations§
Trait Implementations§
Source§impl Clone for CreateAccountSessionComponentsIssuingCardsListFeatures
impl Clone for CreateAccountSessionComponentsIssuingCardsListFeatures
Source§fn clone(&self) -> CreateAccountSessionComponentsIssuingCardsListFeatures
fn clone(&self) -> CreateAccountSessionComponentsIssuingCardsListFeatures
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 CreateAccountSessionComponentsIssuingCardsListFeatures
Auto Trait Implementations§
impl Freeze for CreateAccountSessionComponentsIssuingCardsListFeatures
impl RefUnwindSafe for CreateAccountSessionComponentsIssuingCardsListFeatures
impl Send for CreateAccountSessionComponentsIssuingCardsListFeatures
impl Sync for CreateAccountSessionComponentsIssuingCardsListFeatures
impl Unpin for CreateAccountSessionComponentsIssuingCardsListFeatures
impl UnwindSafe for CreateAccountSessionComponentsIssuingCardsListFeatures
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