pub struct Payout {
pub id: PayoutID,
pub status: PayoutStatus,
pub amount: String,
pub currency_code: CurrencyCodeChargebacks,
}
Expand description
Payout entity received from a payout event
Fields§
§id: PayoutID
ID for this payout.
status: PayoutStatus
Status of this payout.
amount: String
Fee amount for this chargeback in the original currency.
currency_code: CurrencyCodeChargebacks
Three-letter ISO 4217 currency code for chargeback fees.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Payout
impl<'de> Deserialize<'de> for Payout
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 Payout
impl RefUnwindSafe for Payout
impl Send for Payout
impl Sync for Payout
impl Unpin for Payout
impl UnwindSafe for Payout
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