Struct stripe::Transfer[][src]

pub struct Transfer {
    pub id: String,
    pub object: String,
    pub amount: u64,
    pub amount_reversed: u64,
    pub balance_transaction: String,
    pub created: Timestamp,
    pub currency: Currency,
    pub description: Option<String>,
    pub destination: String,
    pub destination_payment: String,
    pub livemode: bool,
    pub metadata: Metadata,
    pub reversals: List<TransferReversal>,
    pub reversed: bool,
    pub source_transaction: String,
    pub source_type: String,
    pub transfer_group: String,
}

The resource representing a Stripe transfer.

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

Fields

Trait Implementations

impl Debug for Transfer
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Transfer

impl Sync for Transfer