pub struct ConnectEmbeddedIssuingCardsListFeatures {
pub card_management: bool,
pub card_spend_dispute_management: bool,
pub cardholder_management: bool,
pub disable_stripe_user_authentication: bool,
pub spend_control_management: bool,
}Fields§
§card_management: boolWhether to allow card management features.
card_spend_dispute_management: boolWhether to allow card spend dispute management features.
cardholder_management: boolWhether to allow cardholder management features.
disable_stripe_user_authentication: boolWhether 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: boolWhether to allow spend control management features.
Trait Implementations§
Source§impl Clone for ConnectEmbeddedIssuingCardsListFeatures
impl Clone for ConnectEmbeddedIssuingCardsListFeatures
Source§fn clone(&self) -> ConnectEmbeddedIssuingCardsListFeatures
fn clone(&self) -> ConnectEmbeddedIssuingCardsListFeatures
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 FromValueOpt for ConnectEmbeddedIssuingCardsListFeatures
impl FromValueOpt for ConnectEmbeddedIssuingCardsListFeatures
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for ConnectEmbeddedIssuingCardsListFeatures
impl PartialEq for ConnectEmbeddedIssuingCardsListFeatures
Source§fn eq(&self, other: &ConnectEmbeddedIssuingCardsListFeatures) -> bool
fn eq(&self, other: &ConnectEmbeddedIssuingCardsListFeatures) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ConnectEmbeddedIssuingCardsListFeatures
impl Eq for ConnectEmbeddedIssuingCardsListFeatures
impl StructuralPartialEq for ConnectEmbeddedIssuingCardsListFeatures
Auto Trait Implementations§
impl Freeze for ConnectEmbeddedIssuingCardsListFeatures
impl RefUnwindSafe for ConnectEmbeddedIssuingCardsListFeatures
impl Send for ConnectEmbeddedIssuingCardsListFeatures
impl Sync for ConnectEmbeddedIssuingCardsListFeatures
impl Unpin for ConnectEmbeddedIssuingCardsListFeatures
impl UnsafeUnpin for ConnectEmbeddedIssuingCardsListFeatures
impl UnwindSafe for ConnectEmbeddedIssuingCardsListFeatures
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