-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbook-transfers.ts
321 lines (276 loc) · 8.18 KB
/
book-transfers.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../resource';
import { isRequestOptions } from '../core';
import * as Core from '../core';
import { CursorPage, type CursorPageParams } from '../pagination';
export class BookTransfers extends APIResource {
/**
* Book transfer funds between two financial accounts or between a financial
* account and card
*/
create(
body: BookTransferCreateParams,
options?: Core.RequestOptions,
): Core.APIPromise<BookTransferResponse> {
return this._client.post('/v1/book_transfers', { body, ...options });
}
/**
* Get book transfer by token
*/
retrieve(bookTransferToken: string, options?: Core.RequestOptions): Core.APIPromise<BookTransferResponse> {
return this._client.get(`/v1/book_transfers/${bookTransferToken}`, options);
}
/**
* List book transfers
*/
list(
query?: BookTransferListParams,
options?: Core.RequestOptions,
): Core.PagePromise<BookTransferResponsesCursorPage, BookTransferResponse>;
list(
options?: Core.RequestOptions,
): Core.PagePromise<BookTransferResponsesCursorPage, BookTransferResponse>;
list(
query: BookTransferListParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.PagePromise<BookTransferResponsesCursorPage, BookTransferResponse> {
if (isRequestOptions(query)) {
return this.list({}, query);
}
return this._client.getAPIList('/v1/book_transfers', BookTransferResponsesCursorPage, {
query,
...options,
});
}
/**
* Reverse a book transfer
*/
reverse(
bookTransferToken: string,
body: BookTransferReverseParams,
options?: Core.RequestOptions,
): Core.APIPromise<BookTransferResponse> {
return this._client.post(`/v1/book_transfers/${bookTransferToken}/reverse`, { body, ...options });
}
}
export class BookTransferResponsesCursorPage extends CursorPage<BookTransferResponse> {}
export interface BookTransferResponse {
/**
* Customer-provided token that will serve as an idempotency token. This token will
* become the transaction token.
*/
token: string;
/**
* Category of the book transfer
*/
category: 'ADJUSTMENT' | 'BALANCE_OR_FUNDING' | 'DERECOGNITION' | 'DISPUTE' | 'FEE' | 'REWARD' | 'TRANSFER';
/**
* Date and time when the transfer occurred. UTC time zone.
*/
created: string;
/**
* 3-digit alphabetic ISO 4217 code for the settling currency of the transaction.
*/
currency: string;
/**
* A list of all financial events that have modified this transfer.
*/
events: Array<BookTransferResponse.Event>;
/**
* Globally unique identifier for the financial account or card that will send the
* funds. Accepted type dependent on the program's use case.
*/
from_financial_account_token: string;
/**
* Pending amount of the transaction in the currency's smallest unit (e.g., cents),
* including any acquirer fees. The value of this field will go to zero over time
* once the financial transaction is settled.
*/
pending_amount: number;
/**
* APPROVED transactions were successful while DECLINED transactions were declined
* by user, Lithic, or the network.
*/
result: 'APPROVED' | 'DECLINED';
/**
* Amount of the transaction that has been settled in the currency's smallest unit
* (e.g., cents).
*/
settled_amount: number;
/**
* Status types: _ `DECLINED` - The transfer was declined. _ `REVERSED` - The
* transfer was reversed \* `SETTLED` - The transfer is completed.
*/
status: 'DECLINED' | 'REVERSED' | 'SETTLED';
/**
* Globally unique identifier for the financial account or card that will receive
* the funds. Accepted type dependent on the program's use case.
*/
to_financial_account_token: unknown;
/**
* Date and time when the financial transaction was last updated. UTC time zone.
*/
updated: string;
}
export namespace BookTransferResponse {
export interface Event {
/**
* Globally unique identifier.
*/
token: string;
/**
* Amount of the financial event that has been settled in the currency's smallest
* unit (e.g., cents).
*/
amount: number;
/**
* Date and time when the financial event occurred. UTC time zone.
*/
created: string;
/**
* Detailed Results
*/
detailed_results: Array<'APPROVED' | 'FUNDS_INSUFFICIENT'>;
/**
* Memo for the transfer.
*/
memo: string;
/**
* APPROVED financial events were successful while DECLINED financial events were
* declined by user, Lithic, or the network.
*/
result: 'APPROVED' | 'DECLINED';
/**
* The program specific subtype code for the specified category/type.
*/
subtype: string;
/**
* Type of the book transfer
*/
type: string;
}
}
export interface BookTransferCreateParams {
/**
* Amount to be transferred in the currency’s smallest unit (e.g., cents for USD).
* This should always be a positive value.
*/
amount: number;
/**
* Category of the book transfer
*/
category: 'ADJUSTMENT' | 'BALANCE_OR_FUNDING' | 'DERECOGNITION' | 'DISPUTE' | 'FEE' | 'REWARD' | 'TRANSFER';
/**
* Globally unique identifier for the financial account or card that will send the
* funds. Accepted type dependent on the program's use case.
*/
from_financial_account_token: string;
/**
* The program specific subtype code for the specified category/type.
*/
subtype: string;
/**
* Globally unique identifier for the financial account or card that will receive
* the funds. Accepted type dependent on the program's use case.
*/
to_financial_account_token: string;
/**
* Type of book_transfer
*/
type:
| 'ATM_WITHDRAWAL'
| 'ATM_DECLINE'
| 'INTERNATIONAL_ATM_WITHDRAWAL'
| 'INACTIVITY'
| 'STATEMENT'
| 'MONTHLY'
| 'QUARTERLY'
| 'ANNUAL'
| 'CUSTOMER_SERVICE'
| 'ACCOUNT_MAINTENANCE'
| 'ACCOUNT_ACTIVATION'
| 'ACCOUNT_CLOSURE'
| 'CARD_REPLACEMENT'
| 'CARD_DELIVERY'
| 'CARD_CREATE'
| 'CURRENCY_CONVERSION'
| 'INTEREST'
| 'LATE_PAYMENT'
| 'BILL_PAYMENT'
| 'CASH_BACK'
| 'ACCOUNT_TO_ACCOUNT'
| 'CARD_TO_CARD'
| 'DISBURSE'
| 'BILLING_ERROR'
| 'LOSS_WRITE_OFF'
| 'EXPIRED_CARD'
| 'EARLY_DERECOGNITION'
| 'ESCHEATMENT'
| 'INACTIVITY_FEE_DOWN'
| 'PROVISIONAL_CREDIT'
| 'DISPUTE_WON'
| 'TRANSFER';
/**
* Customer-provided token that will serve as an idempotency token. This token will
* become the transaction token.
*/
token?: string;
/**
* Optional descriptor for the transfer.
*/
memo?: string;
}
export interface BookTransferListParams extends CursorPageParams {
account_token?: string;
/**
* Date string in RFC 3339 format. Only entries created after the specified time
* will be included. UTC time zone.
*/
begin?: string;
business_account_token?: string;
/**
* Book Transfer category to be returned.
*/
category?:
| 'BALANCE_OR_FUNDING'
| 'FEE'
| 'REWARD'
| 'ADJUSTMENT'
| 'DERECOGNITION'
| 'DISPUTE'
| 'INTERNAL';
/**
* Date string in RFC 3339 format. Only entries created before the specified time
* will be included. UTC time zone.
*/
end?: string;
/**
* Globally unique identifier for the financial account or card that will send the
* funds. Accepted type dependent on the program's use case.
*/
financial_account_token?: string;
/**
* Book transfer result to be returned.
*/
result?: 'APPROVED' | 'DECLINED';
/**
* Book transfer status to be returned.
*/
status?: 'DECLINED' | 'SETTLED';
}
export interface BookTransferReverseParams {
/**
* Optional descriptor for the reversal.
*/
memo?: string;
}
BookTransfers.BookTransferResponsesCursorPage = BookTransferResponsesCursorPage;
export declare namespace BookTransfers {
export {
type BookTransferResponse as BookTransferResponse,
BookTransferResponsesCursorPage as BookTransferResponsesCursorPage,
type BookTransferCreateParams as BookTransferCreateParams,
type BookTransferListParams as BookTransferListParams,
type BookTransferReverseParams as BookTransferReverseParams,
};
}