forked from stripe/stripe-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Payouts.d.ts
147 lines (122 loc) · 5.36 KB
/
Payouts.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// 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://stripe.com/docs/connect/bank-debit-card-payouts). You can retrieve individual payouts,
* as well as list all payouts. Payouts are made on [varying
* schedules](https://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';
/**
* Amount (in cents (or local equivalent)) to be transferred to your bank account or debit card.
*/
amount: number;
/**
* Date the payout is expected to arrive in the bank. This factors in delays like weekends or bank holidays.
*/
arrival_date: number;
/**
* Returns `true` if the payout was created by an [automated payout schedule](https://stripe.com/docs/payouts#payout-schedule), and `false` if it was [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 was sent to.
*/
destination:
| string
| Stripe.BankAccount
| Stripe.DeletedBankAccount
| Stripe.Card
| Stripe.DeletedCard
| null;
/**
* 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_balance_transaction: string | Stripe.BalanceTransaction | null;
/**
* Error code explaining reason for payout failure if available. See [Types of payout failures](https://stripe.com/docs/api#payout_failures) for a list of failure codes.
*/
failure_code: string | null;
/**
* Message to user further explaining reason for 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. (See [Bank support for Instant Payouts](https://stripe.com/docs/payouts/instant-payouts-banks) for more information.)
*/
method: string;
/**
* If the payout reverses another, this is the ID of the original payout.
*/
original_payout: string | Stripe.Payout | null;
/**
* If `completed`, the [Balance Transactions API](https://stripe.com/docs/api/balance_transactions/list#balance_transaction_list-payout) may be used to list all Balance Transactions that were paid out in this payout.
*/
reconciliation_status: Payout.ReconciliationStatus;
/**
* If the payout was reversed, this is the ID of the payout that reverses this payout.
*/
reversed_by: string | Stripe.Payout | null;
/**
* The source balance this payout came from. One of `card`, `fpx`, or `bank_account`.
*/
source_type: string;
/**
* Extra information about a payout to be displayed 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 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`.
*/
status: string;
/**
* Can be `bank_account` or `card`.
*/
type: Payout.Type;
}
namespace Payout {
type ReconciliationStatus =
| 'completed'
| 'in_progress'
| 'not_applicable';
type Type = 'bank_account' | 'card';
}
}
}