Struct stripe::TransferReversal [−][src]
pub struct TransferReversal {
pub id: TransferReversalId,
pub amount: i64,
pub balance_transaction: Option<Box<Expandable<BalanceTransaction>>>,
pub created: Timestamp,
pub currency: Currency,
pub destination_payment_refund: Option<Box<Expandable<Refund>>>,
pub metadata: Metadata,
pub source_refund: Option<Box<Expandable<Refund>>>,
pub transfer: Expandable<Transfer>,
}
Expand description
The resource representing a Stripe “TransferReversal”.
For more details see https://stripe.com/docs/api/transfer_reversals/object
Fields
id: TransferReversalId
Unique identifier for the object.
amount: i64
Amount, in %s.
balance_transaction: Option<Box<Expandable<BalanceTransaction>>>
Balance transaction that describes the impact on your account balance.
created: Timestamp
Time at which the object was created.
Measured in seconds since the Unix epoch.
currency: Currency
Three-letter ISO currency code, in lowercase.
Must be a supported currency.
destination_payment_refund: Option<Box<Expandable<Refund>>>
Linked payment refund for the transfer reversal.
metadata: Metadata
Set of key-value pairs that you can attach to an object.
This can be useful for storing additional information about the object in a structured format.
source_refund: Option<Box<Expandable<Refund>>>
ID of the refund responsible for the transfer reversal.
transfer: Expandable<Transfer>
ID of the transfer that was reversed.
Trait Implementations
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 RefUnwindSafe for TransferReversal
impl Send for TransferReversal
impl Sync for TransferReversal
impl Unpin for TransferReversal
impl UnwindSafe for TransferReversal
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more