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: TransferReversalId
Unique identifier for the object.
amount: i64
Amount, in cents (or local equivalent).
balance_transaction: Option<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<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 moresource§impl Debug for TransferReversal
impl Debug for TransferReversal
source§impl Default for TransferReversal
impl Default for TransferReversal
source§fn default() -> TransferReversal
fn default() -> TransferReversal
source§impl<'de> Deserialize<'de> for TransferReversal
impl<'de> Deserialize<'de> for TransferReversal
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>,
source§impl Object for TransferReversal
impl Object for TransferReversal
Auto Trait Implementations§
impl Freeze for TransferReversal
impl RefUnwindSafe for TransferReversal
impl Send for TransferReversal
impl Sync for TransferReversal
impl Unpin for TransferReversal
impl UnwindSafe for TransferReversal
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)