Struct stripe::TransferReversal[][src]

pub struct TransferReversal {
    pub id: String,
    pub object: String,
    pub amount: u64,
    pub balance_transaction: String,
    pub created: Timestamp,
    pub currency: Currency,
    pub metadata: Metadata,
    pub transfer: String,
}

The resource representing a Stripe transfer reversal.

For more details see https://stripe.com/docs/api#transfer_reversal_object.

Fields

Trait Implementations

impl Debug for TransferReversal
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations