-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathbook-transfers.ts
More file actions
426 lines (370 loc) · 10.1 KB
/
Copy pathbook-transfers.ts
File metadata and controls
426 lines (370 loc) · 10.1 KB
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../core/resource';
import * as ManagementOperationsAPI from './management-operations';
import { APIPromise } from '../core/api-promise';
import { CursorPage, type CursorPageParams, PagePromise } from '../core/pagination';
import { RequestOptions } from '../internal/request-options';
import { path } from '../internal/utils/path';
export class BookTransfers extends APIResource {
/**
* Book transfer funds between two financial accounts or between a financial
* account and card
*/
create(body: BookTransferCreateParams, options?: RequestOptions): APIPromise<BookTransferResponse> {
return this._client.post('/v1/book_transfers', { body, ...options });
}
/**
* Get book transfer by token
*/
retrieve(bookTransferToken: string, options?: RequestOptions): APIPromise<BookTransferResponse> {
return this._client.get(path`/v1/book_transfers/${bookTransferToken}`, options);
}
/**
* List book transfers
*/
list(
query: BookTransferListParams | null | undefined = {},
options?: RequestOptions,
): PagePromise<BookTransferResponsesCursorPage, BookTransferResponse> {
return this._client.getAPIList('/v1/book_transfers', CursorPage<BookTransferResponse>, {
query,
...options,
});
}
/**
* Retry a book transfer that has been declined
*/
retry(
bookTransferToken: string,
body: BookTransferRetryParams,
options?: RequestOptions,
): APIPromise<BookTransferResponse> {
return this._client.post(path`/v1/book_transfers/${bookTransferToken}/retry`, { body, ...options });
}
/**
* Reverse a book transfer
*/
reverse(
bookTransferToken: string,
body: BookTransferReverseParams,
options?: RequestOptions,
): APIPromise<BookTransferResponse> {
return this._client.post(path`/v1/book_transfers/${bookTransferToken}/reverse`, { body, ...options });
}
}
export type BookTransferResponsesCursorPage = CursorPage<BookTransferResponse>;
/**
* Book transfer transaction
*/
export interface BookTransferResponse {
/**
* Unique identifier for the transaction
*/
token: string;
category:
| 'ADJUSTMENT'
| 'BALANCE_OR_FUNDING'
| 'DERECOGNITION'
| 'DISPUTE'
| 'FEE'
| 'INTERNAL'
| 'REWARD'
| 'PROGRAM_FUNDING'
| 'TRANSFER';
/**
* ISO 8601 timestamp of when the transaction was created
*/
created: string;
/**
* 3-character 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>;
/**
* TRANSFER - Book Transfer Transaction
*/
family: '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;
/**
* 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;
result: 'APPROVED' | 'DECLINED';
/**
* Amount of the transaction that has been settled in the currency's smallest unit
* (e.g., cents)
*/
settled_amount: number;
/**
* The status of the transaction
*/
status: 'PENDING' | 'SETTLED' | 'DECLINED' | 'REVERSED' | 'CANCELED' | 'RETURNED';
/**
* 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;
/**
* ISO 8601 timestamp of when the transaction was last updated
*/
updated: string;
/**
* External ID defined by the customer
*/
external_id?: string | null;
/**
* External resource associated with the management operation
*/
external_resource?: ManagementOperationsAPI.ExternalResource | null;
/**
* A series of transactions that are grouped together
*/
transaction_series?: BookTransferResponse.TransactionSeries | null;
}
export namespace BookTransferResponse {
/**
* Book transfer Event
*/
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: 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:
| 'ATM_BALANCE_INQUIRY'
| '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'
| 'SERVICE'
| 'TRANSFER'
| 'COLLECTION';
}
/**
* A series of transactions that are grouped together
*/
export interface TransactionSeries {
related_transaction_event_token: string | null;
related_transaction_token: string | null;
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:
| 'ADJUSTMENT'
| 'BALANCE_OR_FUNDING'
| 'DERECOGNITION'
| 'DISPUTE'
| 'FEE'
| 'INTERNAL'
| 'REWARD'
| 'PROGRAM_FUNDING'
| '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 the book transfer
*/
type:
| 'ATM_BALANCE_INQUIRY'
| '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'
| 'SERVICE'
| 'TRANSFER'
| 'COLLECTION';
/**
* Customer-provided token that will serve as an idempotency token. This token will
* become the transaction token.
*/
token?: string;
/**
* External ID defined by the customer
*/
external_id?: string;
/**
* Token of an existing hold to settle when this transfer is initiated
*/
hold_token?: string;
/**
* Optional descriptor for the transfer.
*/
memo?: string;
/**
* What to do if the financial account is closed when posting an operation
*/
on_closed_account?: 'FAIL' | 'USE_SUSPENSE';
}
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?:
| 'ADJUSTMENT'
| 'BALANCE_OR_FUNDING'
| 'DERECOGNITION'
| 'DISPUTE'
| 'FEE'
| 'INTERNAL'
| 'REWARD'
| 'PROGRAM_FUNDING'
| 'TRANSFER';
/**
* 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 BookTransferRetryParams {
/**
* Customer-provided token that will serve as an idempotency token. This token will
* become the transaction token.
*/
retry_token: string;
}
export interface BookTransferReverseParams {
/**
* Optional descriptor for the reversal.
*/
memo?: string;
}
export declare namespace BookTransfers {
export {
type BookTransferResponse as BookTransferResponse,
type BookTransferResponsesCursorPage as BookTransferResponsesCursorPage,
type BookTransferCreateParams as BookTransferCreateParams,
type BookTransferListParams as BookTransferListParams,
type BookTransferRetryParams as BookTransferRetryParams,
type BookTransferReverseParams as BookTransferReverseParams,
};
}