pub struct ChargebackFee {
pub amount: String,
pub original: Option<Original>,
}
Expand description
Chargeback fees incurred for this adjustment. Only returned when the adjustment action
is chargeback
or chargeback_warning
.
Fields§
§amount: String
Chargeback fee converted into the payout currency.
original: Option<Original>
Chargeback fee before conversion to the payout currency. null
when the chargeback fee is the same as the payout currency.
Trait Implementations§
Source§impl Clone for ChargebackFee
impl Clone for ChargebackFee
Source§fn clone(&self) -> ChargebackFee
fn clone(&self) -> ChargebackFee
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 ChargebackFee
impl Debug for ChargebackFee
Source§impl<'de> Deserialize<'de> for ChargebackFee
impl<'de> Deserialize<'de> for ChargebackFee
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ChargebackFee
impl RefUnwindSafe for ChargebackFee
impl Send for ChargebackFee
impl Sync for ChargebackFee
impl Unpin for ChargebackFee
impl UnwindSafe for ChargebackFee
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