pub struct DisputePaymentMethodDetailsCard {
pub brand: String,
pub case_type: DisputePaymentMethodDetailsCardCaseType,
pub network_reason_code: Option<String>,
}
Fields§
§brand: String
Card brand.
Can be amex
, diners
, discover
, eftpos_au
, jcb
, link
, mastercard
, unionpay
, visa
, or unknown
.
case_type: DisputePaymentMethodDetailsCardCaseType
The type of dispute opened. Different case types may have varying fees and financial impact.
network_reason_code: Option<String>
The card network’s specific dispute reason code, which maps to one of Stripe’s primary dispute categories to simplify response guidance. The Network code map lists all available dispute reason codes by network.
Trait Implementations§
Source§impl Clone for DisputePaymentMethodDetailsCard
impl Clone for DisputePaymentMethodDetailsCard
Source§fn clone(&self) -> DisputePaymentMethodDetailsCard
fn clone(&self) -> DisputePaymentMethodDetailsCard
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 moreAuto Trait Implementations§
impl Freeze for DisputePaymentMethodDetailsCard
impl RefUnwindSafe for DisputePaymentMethodDetailsCard
impl Send for DisputePaymentMethodDetailsCard
impl Sync for DisputePaymentMethodDetailsCard
impl Unpin for DisputePaymentMethodDetailsCard
impl UnwindSafe for DisputePaymentMethodDetailsCard
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