Struct stripe::generated::connect::transfer_reversal::TransferReversal
source · pub struct TransferReversal {
pub id: TransferReversalId,
pub amount: i64,
pub balance_transaction: Option<Expandable<BalanceTransaction>>,
pub created: Timestamp,
pub currency: Currency,
pub destination_payment_refund: Option<Expandable<Refund>>,
pub metadata: Option<Metadata>,
pub source_refund: Option<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: TransferReversalIdUnique identifier for the object.
amount: i64Amount, in cents (or local equivalent).
balance_transaction: Option<Expandable<BalanceTransaction>>Balance transaction that describes the impact on your account balance.
created: TimestampTime at which the object was created.
Measured in seconds since the Unix epoch.
currency: CurrencyThree-letter ISO currency code, in lowercase.
Must be a supported currency.
destination_payment_refund: Option<Expandable<Refund>>Linked payment refund for the transfer reversal.
metadata: Option<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<Expandable<Refund>>ID of the refund responsible for the transfer reversal.
transfer: Expandable<Transfer>ID of the transfer that was reversed.
Implementations§
source§impl TransferReversal
impl TransferReversal
sourcepub fn create(
client: &Client,
transfer: &TransferId,
params: CreateTransferReversal
) -> Response<TransferReversal>
pub fn create( client: &Client, transfer: &TransferId, params: CreateTransferReversal ) -> Response<TransferReversal>
Create Transfer Reversal
For more details see https://stripe.com/docs/api/transfer_reversals/create.
Trait Implementations§
source§impl Clone for TransferReversal
impl Clone for TransferReversal
source§fn clone(&self) -> TransferReversal
fn clone(&self) -> TransferReversal
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more