Struct Payout

Source
pub struct Payout {
Show 25 fields pub amount: i64, pub application_fee: Option<Expandable<ApplicationFee>>, pub application_fee_amount: Option<i64>, pub arrival_date: i64, pub automatic: bool, pub balance_transaction: Option<Expandable<BalanceTransaction>>, pub created: i64, pub currency: Currency, pub description: Option<String>, pub destination: Option<Expandable<ExternalAccount>>, pub failure_balance_transaction: Option<Expandable<BalanceTransaction>>, pub failure_code: Option<String>, pub failure_message: Option<String>, pub id: PayoutId, pub livemode: bool, pub metadata: Option<HashMap<String, String>>, 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 trace_id: Option<PayoutsTraceId>, pub type_: PayoutType,
}
Expand description

A Payout object is created when you receive funds from Stripe, or when you initiate a payout to either a bank account or debit card of a connected Stripe account. You can retrieve individual payouts, and list all payouts. Payouts are made on varying schedules, depending on your country and industry.

Related guide: Receiving payouts

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

Fields§

§amount: i64

The amount (in cents (or local equivalent)) that transfers to your bank account or debit card.

§application_fee: Option<Expandable<ApplicationFee>>

The application fee (if any) for the payout. See the Connect documentation for details.

§application_fee_amount: Option<i64>

The amount of the application fee (if any) requested for the payout. See the Connect documentation for details.

§arrival_date: i64

Date that you can expect the payout to arrive in the bank. This factors in delays to account for weekends or bank holidays.

§automatic: bool

Returns true if the payout is created by an automated payout schedule and false if it’s requested manually.

§balance_transaction: Option<Expandable<BalanceTransaction>>

ID of the balance transaction that describes the impact of this payout on your account balance.

§created: i64

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<ExternalAccount>>

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

§failure_balance_transaction: Option<Expandable<BalanceTransaction>>

If the payout fails or cancels, this is the ID of the balance transaction that reverses the initial balance transaction and returns the funds from the failed payout back in your balance.

§failure_code: Option<String>

Error code that provides a reason for a payout failure, if available. View our list of failure codes.

§failure_message: Option<String>

Message that provides the reason for a payout failure, if available.

§id: PayoutId

Unique identifier for the object.

§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: Option<HashMap<String, String>>

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 supported for payouts to debit cards and bank accounts in certain countries. Learn more about bank support for Instant Payouts.

§original_payout: Option<Expandable<Payout>>

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

§reconciliation_status: PayoutReconciliationStatus

If completed, you can use the Balance Transactions API to list all balance transactions that are paid out in this payout.

§reversed_by: Option<Expandable<Payout>>

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

§source_type: String

The source balance this payout came from, which can be one of the following: card, fpx, or bank_account.

§statement_descriptor: Option<String>

Extra information about a payout that displays 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’s submitted to the bank, when it becomes in_transit. The status changes to paid if the transaction succeeds, or to failed or canceled (within 5 business days). Some payouts that fail might initially show as paid, then change to failed.

§trace_id: Option<PayoutsTraceId>

A value that generates from the beneficiary’s bank that allows users to track payouts with their bank. Banks might call this a “reference number” or something similar.

§type_: PayoutType

Can be bank_account or card.

Trait Implementations§

Source§

impl Clone for Payout

Source§

fn clone(&self) -> Payout

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Payout

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Deserialize for Payout

Source§

fn begin(out: &mut Option<Payout>) -> &mut dyn Visitor

The only correct implementation of this method is: Read more
Source§

impl Object for Payout

Source§

type Id = PayoutId

The canonical id type for this object.
Source§

fn id(&self) -> &<Payout as Object>::Id

The id of the object.
Source§

fn into_id(self) -> <Payout as Object>::Id

The owned id of the object.
Source§

impl ObjectDeser for Payout

Source§

type Builder = PayoutBuilder

Auto Trait Implementations§

§

impl Freeze for Payout

§

impl RefUnwindSafe for Payout

§

impl Send for Payout

§

impl Sync for Payout

§

impl Unpin for Payout

§

impl UnwindSafe for Payout

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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