pub struct TransactionPayoutTotalsAdjusted {
pub subtotal: String,
pub tax: String,
pub total: String,
pub fee: String,
pub chargeback_fee: ChargebackFee,
pub earnings: String,
pub currency_code: CurrencyCodePayouts,
}Expand description
Breakdown of the payout total for a transaction after adjustments. null until the transaction is completed.
Fields§
§subtotal: StringTotal before tax and fees.
tax: StringTotal tax on the subtotal.
total: StringTotal after tax.
fee: StringTotal fee taken by Paddle for this payout.
chargeback_fee: ChargebackFeeDetails of any chargeback fees incurred for this transaction.
earnings: StringTotal earnings for this payout. This is the subtotal minus the Paddle fee, excluding chargeback fees.
currency_code: CurrencyCodePayoutsSupported three-letter ISO 4217 currency code for payouts from Paddle.
Trait Implementations§
Source§impl Clone for TransactionPayoutTotalsAdjusted
impl Clone for TransactionPayoutTotalsAdjusted
Source§fn clone(&self) -> TransactionPayoutTotalsAdjusted
fn clone(&self) -> TransactionPayoutTotalsAdjusted
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<'de> Deserialize<'de> for TransactionPayoutTotalsAdjusted
impl<'de> Deserialize<'de> for TransactionPayoutTotalsAdjusted
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 TransactionPayoutTotalsAdjusted
impl RefUnwindSafe for TransactionPayoutTotalsAdjusted
impl Send for TransactionPayoutTotalsAdjusted
impl Sync for TransactionPayoutTotalsAdjusted
impl Unpin for TransactionPayoutTotalsAdjusted
impl UnwindSafe for TransactionPayoutTotalsAdjusted
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