pub struct Payout {Show 22 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 reconciliation_status: PayoutReconciliationStatus,
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: PayoutIdUnique identifier for the object.
amount: i64Amount (in %s) to be transferred to your bank account or debit card.
arrival_date: TimestampDate the payout is expected to arrive in the bank.
This factors in delays like weekends or bank holidays.
automatic: boolReturns 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: TimestampTime at which the object was created.
Measured in seconds since the Unix epoch.
currency: CurrencyThree-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: boolHas the value true if the object exists in live mode or the value false if the object exists in test mode.
metadata: MetadataSet 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: StringThe 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.
reconciliation_status: PayoutReconciliationStatusIf completed, the Balance Transactions API may be used to list all Balance Transactions that were paid out in this payout.
reversed_by: Option<Expandable<Payout>>If the payout was reversed, this is the ID of the payout that reverses this payout.
source_type: StringThe 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: StringCurrent 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_: PayoutTypeCan be bank_account or card.
Implementations§
source§impl Payout
impl Payout
sourcepub fn list(client: &Client, params: &ListPayouts<'_>) -> Response<List<Payout>>
pub fn list(client: &Client, params: &ListPayouts<'_>) -> Response<List<Payout>>
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.
sourcepub fn create(client: &Client, params: CreatePayout<'_>) -> Response<Payout>
pub fn create(client: &Client, params: CreatePayout<'_>) -> Response<Payout>
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.