pub struct AccountDeclineChargeOn {
pub avs_failure: bool,
pub cvc_failure: bool,
}
Fields§
§avs_failure: bool
Whether Stripe automatically declines charges with an incorrect ZIP or postal code. This setting only applies when a ZIP or postal code is provided and they fail bank verification.
cvc_failure: bool
Whether Stripe automatically declines charges with an incorrect CVC. This setting only applies when a CVC is provided and it fails bank verification.
Trait Implementations§
Source§impl Clone for AccountDeclineChargeOn
impl Clone for AccountDeclineChargeOn
Source§fn clone(&self) -> AccountDeclineChargeOn
fn clone(&self) -> AccountDeclineChargeOn
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 AccountDeclineChargeOn
impl Debug for AccountDeclineChargeOn
Source§impl Deserialize for AccountDeclineChargeOn
impl Deserialize for AccountDeclineChargeOn
Source§impl FromValueOpt for AccountDeclineChargeOn
impl FromValueOpt for AccountDeclineChargeOn
fn from_value(v: Value) -> Option<Self>
Source§impl ObjectDeser for AccountDeclineChargeOn
impl ObjectDeser for AccountDeclineChargeOn
impl Copy for AccountDeclineChargeOn
Auto Trait Implementations§
impl Freeze for AccountDeclineChargeOn
impl RefUnwindSafe for AccountDeclineChargeOn
impl Send for AccountDeclineChargeOn
impl Sync for AccountDeclineChargeOn
impl Unpin for AccountDeclineChargeOn
impl UnwindSafe for AccountDeclineChargeOn
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