pub struct IssuingAuthorizationAmountDetails {
pub atm_fee: Option<i64>,
pub cashback_amount: Option<i64>,
}
Fields§
§atm_fee: Option<i64>
The fee charged by the ATM for the cash withdrawal.
cashback_amount: Option<i64>
The amount of cash requested by the cardholder.
Trait Implementations§
Source§impl Clone for IssuingAuthorizationAmountDetails
impl Clone for IssuingAuthorizationAmountDetails
Source§fn clone(&self) -> IssuingAuthorizationAmountDetails
fn clone(&self) -> IssuingAuthorizationAmountDetails
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 IssuingAuthorizationAmountDetails
impl FromValueOpt for IssuingAuthorizationAmountDetails
fn from_value(v: Value) -> Option<Self>
impl Copy for IssuingAuthorizationAmountDetails
Auto Trait Implementations§
impl Freeze for IssuingAuthorizationAmountDetails
impl RefUnwindSafe for IssuingAuthorizationAmountDetails
impl Send for IssuingAuthorizationAmountDetails
impl Sync for IssuingAuthorizationAmountDetails
impl Unpin for IssuingAuthorizationAmountDetails
impl UnwindSafe for IssuingAuthorizationAmountDetails
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