[][src]Struct stripe::BalanceTransaction

pub struct BalanceTransaction {
    pub id: BalanceTransactionId,
    pub amount: i64,
    pub available_on: Timestamp,
    pub created: Timestamp,
    pub currency: Currency,
    pub description: Option<String>,
    pub exchange_rate: Option<f64>,
    pub fee: i64,
    pub fee_details: Vec<Fee>,
    pub net: i64,
    pub source: Option<Expandable<BalanceTransactionSource>>,
    pub status: BalanceTransactionStatus,
    pub type_: BalanceTransactionType,
}

The resource representing a Stripe "BalanceTransaction".

For more details see https://stripe.com/docs/api/balance_transactions/object.

Fields

id: BalanceTransactionId

Unique identifier for the object.

amount: i64

Gross amount of the transaction, in %s.

available_on: Timestamp

The date the transaction's net funds will become available in the Stripe 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.

description: Option<String>

An arbitrary string attached to the object.

Often useful for displaying to users.

exchange_rate: Option<f64>fee: i64

Fees (in %s) paid for this transaction.

fee_details: Vec<Fee>

Detailed breakdown of fees (in %s) paid for this transaction.

net: i64

Net amount of the transaction, in %s.

source: Option<Expandable<BalanceTransactionSource>>

The Stripe object to which this transaction is related.

status: BalanceTransactionStatus

If the transaction's net funds are available in the Stripe balance yet.

Either available or pending.

type_: BalanceTransactionType

Transaction type: adjustment, advance, advance_funding, application_fee, application_fee_refund, charge, connect_collection_transfer, issuing_authorization_hold, issuing_authorization_release, issuing_transaction, payment, payment_failure_refund, payment_refund, payout, payout_cancel, payout_failure, refund, refund_failure, reserve_transaction, reserved_funds, stripe_fee, stripe_fx_fee, tax_fee, topup, topup_reversal, transfer, transfer_cancel, transfer_failure, or transfer_refund.

Learn more about balance transaction types and what they represent.

Implementations

impl BalanceTransaction[src]

pub fn list(
    client: &Client,
    params: ListBalanceTransactions
) -> Response<List<BalanceTransaction>>
[src]

Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth).

The transactions are returned in sorted order, with the most recent transactions appearing first. Note that this endpoint was previously called “Balance history” and used the path /v1/balance/history.

pub fn retrieve(
    client: &Client,
    id: &BalanceTransactionId,
    expand: &[&str]
) -> Response<BalanceTransaction>
[src]

Retrieves the balance transaction with the given ID.

Note that this endpoint previously used the path /v1/balance/history/:id.

Trait Implementations

impl Clone for BalanceTransaction[src]

impl Debug for BalanceTransaction[src]

impl<'de> Deserialize<'de> for BalanceTransaction[src]

impl Object for BalanceTransaction[src]

type Id = BalanceTransactionId

The canonical id type for this object.

impl Serialize for BalanceTransaction[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.