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: PayoutIDID for this payout.
status: PayoutStatusStatus of this payout.
amount: StringFee amount for this chargeback in the original currency.
currency_code: CurrencyCodeChargebacksThree-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<Payout, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Payout, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Payout
impl Serialize for Payout
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. 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