pub struct Payout {
Show 21 fields pub id: PayoutId, pub amount: i64, pub arrival_date: Timestamp, pub automatic: bool, pub balance_transaction: Option<Expandable<BalanceTransaction>>, pub created: Timestamp, pub currency: Currency, pub description: Option<String>, pub destination: Option<Expandable<PayoutDestinationUnion>>, pub failure_balance_transaction: Option<Expandable<BalanceTransaction>>, pub failure_code: Option<String>, pub failure_message: Option<String>, pub livemode: bool, pub metadata: Metadata, pub method: String, pub original_payout: Option<Expandable<Payout>>, pub reversed_by: Option<Expandable<Payout>>, pub source_type: String, pub statement_descriptor: Option<String>, pub status: String, pub type_: PayoutType,
}
Expand description

The resource representing a Stripe “Payout”.

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

Fields

id: PayoutId

Unique identifier for the object.

amount: i64

Amount (in %s) to be transferred to your bank account or debit card.

arrival_date: Timestamp

Date the payout is expected to arrive in the bank.

This factors in delays like weekends or bank holidays.

automatic: bool

Returns true if the payout was created by an automated payout schedule, and false if it was requested manually.

balance_transaction: Option<Expandable<BalanceTransaction>>

ID of the balance transaction that describes the impact of this payout 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.

description: Option<String>

An arbitrary string attached to the object.

Often useful for displaying to users.

destination: Option<Expandable<PayoutDestinationUnion>>

ID of the bank account or card the payout was sent to.

failure_balance_transaction: Option<Expandable<BalanceTransaction>>

If the payout failed or was canceled, this will be the ID of the balance transaction that reversed the initial balance transaction, and puts the funds from the failed payout back in your balance.

failure_code: Option<String>

Error code explaining reason for payout failure if available.

See Types of payout failures for a list of failure codes.

failure_message: Option<String>

Message to user further explaining reason for payout failure if available.

livemode: bool

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

metadata: 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.

method: String

The method used to send this payout, which can be standard or instant.

instant is only supported for payouts to debit cards. (See Instant payouts for marketplaces for more information.).

original_payout: Option<Expandable<Payout>>

If the payout reverses another, this is the ID of the original payout.

reversed_by: Option<Expandable<Payout>>

If the payout was reversed, this is the ID of the payout that reverses this payout.

source_type: String

The source balance this payout came from.

One of card, fpx, or bank_account.

statement_descriptor: Option<String>

Extra information about a payout to be displayed on the user’s bank statement.

status: String

Current status of the payout: paid, pending, in_transit, canceled or failed.

A payout is pending until it is submitted to the bank, when it becomes in_transit. The status then changes to paid if the transaction goes through, or to failed or canceled (within 5 business days). Some failed payouts may initially show as paid but then change to failed.

type_: PayoutType

Can be bank_account or card.

Implementations

Returns a list of existing payouts sent to third-party bank accounts or that Stripe has sent you.

The payouts are returned in sorted order, with the most recently created payouts appearing first.

To send funds to your own bank account, you create a new payout object.

Your Stripe balance must be able to cover the payout amount, or you’ll receive an “Insufficient Funds” error. If your API key is in test mode, money won’t actually be sent, though everything else will occur as if in live mode. If you are creating a manual payout on a Stripe account that uses multiple payment source types, you’ll need to specify the source type balance that the payout should draw from. The balance object details available and pending amounts by source type.

Retrieves the details of an existing payout.

Supply the unique payout ID from either a payout creation request or the payout list, and Stripe will return the corresponding payout information.

Updates the specified payout by setting the values of the parameters passed.

Any parameters not provided will be left unchanged. This request accepts only the metadata as arguments.

Cancels the payout.

For more details see https://stripe.com/docs/api/payouts/cancel.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

The canonical id type for this object.

The id of the object.

The object’s type, typically represented in wire format as the object property.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more