stripe
Version:
Stripe API wrapper
178 lines (146 loc) • 6.96 kB
TypeScript
// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* 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](https://docs.stripe.com/docs/connect/bank-debit-card-payouts). You can retrieve individual payouts,
* and list all payouts. Payouts are made on [varying
* schedules](https://docs.stripe.com/docs/connect/manage-payout-schedule), depending on your country and
* industry.
*
* Related guide: [Receiving payouts](https://stripe.com/docs/payouts)
*/
interface Payout {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'payout';
/**
* The amount (in cents (or local equivalent)) that transfers to your bank account or debit card.
*/
amount: number;
/**
* The application fee (if any) for the payout. [See the Connect documentation](https://stripe.com/docs/connect/instant-payouts#monetization-and-fees) for details.
*/
application_fee: string | Stripe.ApplicationFee | null;
/**
* The amount of the application fee (if any) requested for the payout. [See the Connect documentation](https://stripe.com/docs/connect/instant-payouts#monetization-and-fees) for details.
*/
application_fee_amount: number | null;
/**
* Date that you can expect the payout to arrive in the bank. This factors in delays to account for weekends or bank holidays.
*/
arrival_date: number;
/**
* Returns `true` if the payout is created by an [automated payout schedule](https://stripe.com/docs/payouts#payout-schedule) and `false` if it's [requested manually](https://stripe.com/docs/payouts#manual-payouts).
*/
automatic: boolean;
/**
* ID of the balance transaction that describes the impact of this payout on your account balance.
*/
balance_transaction: string | Stripe.BalanceTransaction | null;
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
*/
currency: string;
/**
* An arbitrary string attached to the object. Often useful for displaying to users.
*/
description: string | null;
/**
* ID of the bank account or card the payout is sent to.
*/
destination:
| string
| Stripe.ExternalAccount
| Stripe.DeletedExternalAccount
| null;
/**
* 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_balance_transaction: string | Stripe.BalanceTransaction | null;
/**
* Error code that provides a reason for a payout failure, if available. View our [list of failure codes](https://stripe.com/docs/api#payout_failures).
*/
failure_code: string | null;
/**
* Message that provides the reason for a payout failure, if available.
*/
failure_message: string | null;
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
/**
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
*/
metadata: Stripe.Metadata | null;
/**
* 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](https://stripe.com/docs/payouts/instant-payouts-banks).
*/
method: string;
/**
* If the payout reverses another, this is the ID of the original payout.
*/
original_payout: string | Stripe.Payout | null;
/**
* ID of the v2 FinancialAccount the funds are sent to.
*/
payout_method: string | null;
/**
* If `completed`, you can use the [Balance Transactions API](https://stripe.com/docs/api/balance_transactions/list#balance_transaction_list-payout) to list all balance transactions that are paid out in this payout.
*/
reconciliation_status: Payout.ReconciliationStatus;
/**
* If the payout reverses, this is the ID of the payout that reverses this payout.
*/
reversed_by: string | Stripe.Payout | null;
/**
* The source balance this payout came from, which can be one of the following: `card`, `fpx`, or `bank_account`.
*/
source_type: string;
/**
* Extra information about a payout that displays on the user's bank statement.
*/
statement_descriptor: string | null;
/**
* 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`.
*/
status: string;
/**
* 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.
*/
trace_id: Payout.TraceId | null;
/**
* Can be `bank_account` or `card`.
*/
type: Payout.Type;
}
namespace Payout {
type ReconciliationStatus =
| 'completed'
| 'in_progress'
| 'not_applicable';
interface TraceId {
/**
* Possible values are `pending`, `supported`, and `unsupported`. When `payout.status` is `pending` or `in_transit`, this will be `pending`. When the payout transitions to `paid`, `failed`, or `canceled`, this status will become `supported` or `unsupported` shortly after in most cases. In some cases, this may appear as `pending` for up to 10 days after `arrival_date` until transitioning to `supported` or `unsupported`.
*/
status: string;
/**
* The trace ID value if `trace_id.status` is `supported`, otherwise `nil`.
*/
value: string | null;
}
type Type = 'bank_account' | 'card';
}
}
}