-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcard-push-transfers.ts
More file actions
1612 lines (1514 loc) · 42.7 KB
/
card-push-transfers.ts
File metadata and controls
1612 lines (1514 loc) · 42.7 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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../core/resource';
import { APIPromise } from '../core/api-promise';
import { Page, type PageParams, PagePromise } from '../core/pagination';
import { RequestOptions } from '../internal/request-options';
import { path } from '../internal/utils/path';
export class CardPushTransfers extends APIResource {
/**
* Create a Card Push Transfer
*
* @example
* ```ts
* const cardPushTransfer =
* await client.cardPushTransfers.create({
* business_application_identifier: 'funds_disbursement',
* card_token_id:
* 'outbound_card_token_zlt0ml6youq3q7vcdlg0',
* merchant_category_code: '5734',
* merchant_city_name: 'New York',
* merchant_name: 'Acme Corp',
* merchant_name_prefix: 'Acme',
* merchant_postal_code: '10045',
* merchant_state: 'NY',
* presentment_amount: {
* currency: 'USD',
* value: '1234.56',
* },
* recipient_name: 'Ian Crease',
* sender_address_city: 'New York',
* sender_address_line1: '33 Liberty Street',
* sender_address_postal_code: '10045',
* sender_address_state: 'NY',
* sender_name: 'Ian Crease',
* source_account_number_id:
* 'account_number_v18nkfqm6afpsrvy82b2',
* });
* ```
*/
create(body: CardPushTransferCreateParams, options?: RequestOptions): APIPromise<CardPushTransfer> {
return this._client.post('/card_push_transfers', { body, ...options });
}
/**
* Retrieve a Card Push Transfer
*
* @example
* ```ts
* const cardPushTransfer =
* await client.cardPushTransfers.retrieve(
* 'outbound_card_push_transfer_e0z9rdpamraczh4tvwye',
* );
* ```
*/
retrieve(cardPushTransferID: string, options?: RequestOptions): APIPromise<CardPushTransfer> {
return this._client.get(path`/card_push_transfers/${cardPushTransferID}`, options);
}
/**
* List Card Push Transfers
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const cardPushTransfer of client.cardPushTransfers.list()) {
* // ...
* }
* ```
*/
list(
query: CardPushTransferListParams | null | undefined = {},
options?: RequestOptions,
): PagePromise<CardPushTransfersPage, CardPushTransfer> {
return this._client.getAPIList('/card_push_transfers', Page<CardPushTransfer>, { query, ...options });
}
/**
* Approves a Card Push Transfer in a pending_approval state.
*
* @example
* ```ts
* const cardPushTransfer =
* await client.cardPushTransfers.approve(
* 'outbound_card_push_transfer_e0z9rdpamraczh4tvwye',
* );
* ```
*/
approve(cardPushTransferID: string, options?: RequestOptions): APIPromise<CardPushTransfer> {
return this._client.post(path`/card_push_transfers/${cardPushTransferID}/approve`, options);
}
/**
* Cancels a Card Push Transfer in a pending_approval state.
*
* @example
* ```ts
* const cardPushTransfer =
* await client.cardPushTransfers.cancel(
* 'outbound_card_push_transfer_e0z9rdpamraczh4tvwye',
* );
* ```
*/
cancel(cardPushTransferID: string, options?: RequestOptions): APIPromise<CardPushTransfer> {
return this._client.post(path`/card_push_transfers/${cardPushTransferID}/cancel`, options);
}
}
export type CardPushTransfersPage = Page<CardPushTransfer>;
/**
* Card Push Transfers send funds to a recipient's payment card in real-time.
*/
export interface CardPushTransfer {
/**
* The Card Push Transfer's identifier.
*/
id: string;
/**
* If the transfer is accepted by the recipient bank, this will contain
* supplemental details.
*/
acceptance: CardPushTransfer.Acceptance | null;
/**
* The Account from which the transfer was sent.
*/
account_id: string;
/**
* If your account requires approvals for transfers and the transfer was approved,
* this will contain details of the approval.
*/
approval: CardPushTransfer.Approval | null;
/**
* The Business Application Identifier describes the type of transaction being
* performed. Your program must be approved for the specified Business Application
* Identifier in order to use it.
*
* - `account_to_account` - Account to Account
* - `business_to_business` - Business to Business
* - `money_transfer_bank_initiated` - Money Transfer Bank Initiated
* - `non_card_bill_payment` - Non-Card Bill Payment
* - `consumer_bill_payment` - Consumer Bill Payment
* - `card_bill_payment` - Card Bill Payment
* - `funds_disbursement` - Funds Disbursement
* - `funds_transfer` - Funds Transfer
* - `loyalty_and_offers` - Loyalty and Offers
* - `merchant_disbursement` - Merchant Disbursement
* - `merchant_payment` - Merchant Payment
* - `person_to_person` - Person to Person
* - `top_up` - Top Up
* - `wallet_transfer` - Wallet Transfer
*/
business_application_identifier:
| 'account_to_account'
| 'business_to_business'
| 'money_transfer_bank_initiated'
| 'non_card_bill_payment'
| 'consumer_bill_payment'
| 'card_bill_payment'
| 'funds_disbursement'
| 'funds_transfer'
| 'loyalty_and_offers'
| 'merchant_disbursement'
| 'merchant_payment'
| 'person_to_person'
| 'top_up'
| 'wallet_transfer';
/**
* If your account requires approvals for transfers and the transfer was not
* approved, this will contain details of the cancellation.
*/
cancellation: CardPushTransfer.Cancellation | null;
/**
* The ID of the Card Token that was used to validate the card.
*/
card_token_id: string;
/**
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
* the transfer was created.
*/
created_at: string;
/**
* What object created the transfer, either via the API or the dashboard.
*/
created_by: CardPushTransfer.CreatedBy | null;
/**
* If the transfer is rejected by the card network or the destination financial
* institution, this will contain supplemental details.
*/
decline: CardPushTransfer.Decline | null;
/**
* The idempotency key you chose for this object. This value is unique across
* Increase and is used to ensure that a request is only processed once. Learn more
* about [idempotency](https://increase.com/documentation/idempotency-keys).
*/
idempotency_key: string | null;
/**
* The merchant category code (MCC) of the merchant (generally your business)
* sending the transfer. This is a four-digit code that describes the type of
* business or service provided by the merchant. Your program must be approved for
* the specified MCC in order to use it.
*/
merchant_category_code: string;
/**
* The city name of the merchant (generally your business) sending the transfer.
*/
merchant_city_name: string;
/**
* The merchant name shows up as the statement descriptor for the transfer. This is
* typically the name of your business or organization.
*/
merchant_name: string;
/**
* For certain Business Application Identifiers, the statement descriptor is
* `merchant_name_prefix*sender_name`, where the `merchant_name_prefix` is a one to
* four character prefix that identifies the merchant.
*/
merchant_name_prefix: string;
/**
* The postal code of the merchant (generally your business) sending the transfer.
*/
merchant_postal_code: string;
/**
* The state of the merchant (generally your business) sending the transfer.
*/
merchant_state: string;
/**
* The amount that was transferred. The receiving bank will have converted this to
* the cardholder's currency. The amount that is applied to your Increase account
* matches the currency of your account.
*/
presentment_amount: CardPushTransfer.PresentmentAmount;
/**
* The name of the funds recipient.
*/
recipient_name: string;
/**
* The card network route used for the transfer.
*
* - `visa` - Visa and Interlink
* - `mastercard` - Mastercard and Maestro
* - `pulse` - Pulse
*/
route: 'visa' | 'mastercard' | 'pulse';
/**
* The city of the sender.
*/
sender_address_city: string;
/**
* The address line 1 of the sender.
*/
sender_address_line1: string;
/**
* The postal code of the sender.
*/
sender_address_postal_code: string;
/**
* The state of the sender.
*/
sender_address_state: string;
/**
* The name of the funds originator.
*/
sender_name: string;
/**
* The Account Number the recipient will see as having sent the transfer.
*/
source_account_number_id: string;
/**
* The lifecycle status of the transfer.
*
* - `pending_approval` - The transfer is pending approval.
* - `canceled` - The transfer has been canceled.
* - `pending_reviewing` - The transfer is pending review by Increase.
* - `requires_attention` - The transfer requires attention from an Increase
* operator.
* - `pending_submission` - The transfer is queued to be submitted to the card
* network.
* - `submitted` - The transfer has been submitted and is pending a response from
* the card network.
* - `complete` - The transfer has been sent successfully and is complete.
* - `declined` - The transfer was declined by the network or the recipient's bank.
*/
status:
| 'pending_approval'
| 'canceled'
| 'pending_reviewing'
| 'requires_attention'
| 'pending_submission'
| 'submitted'
| 'complete'
| 'declined';
/**
* After the transfer is submitted to the card network, this will contain
* supplemental details.
*/
submission: CardPushTransfer.Submission | null;
/**
* A constant representing the object's type. For this resource it will always be
* `card_push_transfer`.
*/
type: 'card_push_transfer';
[k: string]: unknown;
}
export namespace CardPushTransfer {
/**
* If the transfer is accepted by the recipient bank, this will contain
* supplemental details.
*/
export interface Acceptance {
/**
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
* the transfer was accepted by the issuing bank.
*/
accepted_at: string;
/**
* The authorization identification response from the issuing bank.
*/
authorization_identification_response: string;
/**
* The result of the Card Verification Value 2 match.
*
* - `match` - The Card Verification Value 2 (CVV2) matches the expected value.
* - `no_match` - The Card Verification Value 2 (CVV2) does not match the expected
* value.
*/
card_verification_value2_result: 'match' | 'no_match' | null;
/**
* A unique identifier for the transaction on the card network.
*/
network_transaction_identifier: string | null;
/**
* The transfer amount in USD cents.
*/
settlement_amount: number;
}
/**
* If your account requires approvals for transfers and the transfer was approved,
* this will contain details of the approval.
*/
export interface Approval {
/**
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
* the transfer was approved.
*/
approved_at: string;
/**
* If the Transfer was approved by a user in the dashboard, the email address of
* that user.
*/
approved_by: string | null;
}
/**
* If your account requires approvals for transfers and the transfer was not
* approved, this will contain details of the cancellation.
*/
export interface Cancellation {
/**
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
* the Transfer was canceled.
*/
canceled_at: string;
/**
* If the Transfer was canceled by a user in the dashboard, the email address of
* that user.
*/
canceled_by: string | null;
}
/**
* What object created the transfer, either via the API or the dashboard.
*/
export interface CreatedBy {
/**
* The type of object that created this transfer.
*
* - `api_key` - An API key. Details will be under the `api_key` object.
* - `oauth_application` - An OAuth application you connected to Increase. Details
* will be under the `oauth_application` object.
* - `user` - A User in the Increase dashboard. Details will be under the `user`
* object.
*/
category: 'api_key' | 'oauth_application' | 'user';
/**
* If present, details about the API key that created the transfer.
*/
api_key?: CreatedBy.APIKey | null;
/**
* If present, details about the OAuth Application that created the transfer.
*/
oauth_application?: CreatedBy.OAuthApplication | null;
/**
* If present, details about the User that created the transfer.
*/
user?: CreatedBy.User | null;
}
export namespace CreatedBy {
/**
* If present, details about the API key that created the transfer.
*/
export interface APIKey {
/**
* The description set for the API key when it was created.
*/
description: string | null;
}
/**
* If present, details about the OAuth Application that created the transfer.
*/
export interface OAuthApplication {
/**
* The name of the OAuth Application.
*/
name: string;
}
/**
* If present, details about the User that created the transfer.
*/
export interface User {
/**
* The email address of the User.
*/
email: string;
}
}
/**
* If the transfer is rejected by the card network or the destination financial
* institution, this will contain supplemental details.
*/
export interface Decline {
/**
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
* the transfer declined.
*/
declined_at: string;
/**
* A unique identifier for the transaction on the card network.
*/
network_transaction_identifier: string | null;
/**
* The reason why the transfer was declined.
*
* - `do_not_honor` - The card issuer has declined the transaction without
* providing a specific reason.
* - `activity_count_limit_exceeded` - The number of transactions for the card has
* exceeded the limit set by the issuer.
* - `refer_to_card_issuer` - The card issuer requires the cardholder to contact
* them for further information regarding the transaction.
* - `refer_to_card_issuer_special_condition` - The card issuer requires the
* cardholder to contact them due to a special condition related to the
* transaction.
* - `invalid_merchant` - The merchant is not valid for this transaction.
* - `pick_up_card` - The card should be retained by the terminal.
* - `error` - An error occurred during processing of the transaction.
* - `pick_up_card_special` - The card should be retained by the terminal due to a
* special condition.
* - `invalid_transaction` - The transaction is invalid and cannot be processed.
* - `invalid_amount` - The amount of the transaction is invalid.
* - `invalid_account_number` - The account number provided is invalid.
* - `no_such_issuer` - The issuer of the card could not be found.
* - `re_enter_transaction` - The transaction should be re-entered for processing.
* - `no_credit_account` - There is no credit account associated with the card.
* - `pick_up_card_lost` - The card should be retained by the terminal because it
* has been reported lost.
* - `pick_up_card_stolen` - The card should be retained by the terminal because it
* has been reported stolen.
* - `closed_account` - The account associated with the card has been closed.
* - `insufficient_funds` - There are insufficient funds in the account to complete
* the transaction.
* - `no_checking_account` - There is no checking account associated with the card.
* - `no_savings_account` - There is no savings account associated with the card.
* - `expired_card` - The card has expired and cannot be used for transactions.
* - `transaction_not_permitted_to_cardholder` - The transaction is not permitted
* for this cardholder.
* - `transaction_not_allowed_at_terminal` - The transaction is not allowed at this
* terminal.
* - `transaction_not_supported_or_blocked_by_issuer` - The transaction is not
* supported or has been blocked by the issuer.
* - `suspected_fraud` - The transaction has been flagged as suspected fraud and
* cannot be processed.
* - `activity_amount_limit_exceeded` - The amount of activity on the card has
* exceeded the limit set by the issuer.
* - `restricted_card` - The card has restrictions that prevent it from being used
* for this transaction.
* - `security_violation` - A security violation has occurred, preventing the
* transaction from being processed.
* - `transaction_does_not_fulfill_anti_money_laundering_requirement` - The
* transaction does not meet the anti-money laundering requirements set by the
* issuer.
* - `blocked_by_cardholder` - The transaction was blocked by the cardholder.
* - `blocked_first_use` - The first use of the card has been blocked by the
* issuer.
* - `credit_issuer_unavailable` - The credit issuer is currently unavailable to
* process the transaction.
* - `negative_card_verification_value_results` - The card verification value (CVV)
* results were negative, indicating a potential issue with the card.
* - `issuer_unavailable` - The issuer of the card is currently unavailable to
* process the transaction.
* - `financial_institution_cannot_be_found` - The financial institution associated
* with the card could not be found.
* - `transaction_cannot_be_completed` - The transaction cannot be completed due to
* an unspecified reason.
* - `duplicate_transaction` - The transaction is a duplicate of a previous
* transaction and cannot be processed again.
* - `system_malfunction` - A system malfunction occurred, preventing the
* transaction from being processed.
* - `additional_customer_authentication_required` - Additional customer
* authentication is required to complete the transaction.
* - `surcharge_amount_not_permitted` - The surcharge amount applied to the
* transaction is not permitted by the issuer.
* - `decline_for_cvv2_failure` - The transaction was declined due to a failure in
* verifying the CVV2 code.
* - `stop_payment_order` - A stop payment order has been placed on this
* transaction.
* - `revocation_of_authorization_order` - An order has been placed to revoke
* authorization for this transaction.
* - `revocation_of_all_authorizations_order` - An order has been placed to revoke
* all authorizations for this cardholder.
* - `unable_to_locate_record` - The record associated with the transaction could
* not be located.
* - `file_is_temporarily_unavailable` - The file needed for the transaction is
* temporarily unavailable.
* - `incorrect_pin` - The PIN entered for the transaction is incorrect.
* - `allowable_number_of_pin_entry_tries_exceeded` - The allowable number of PIN
* entry tries has been exceeded.
* - `unable_to_locate_previous_message` - The previous message associated with the
* transaction could not be located.
* - `pin_error_found` - An error was found with the PIN associated with the
* transaction.
* - `cannot_verify_pin` - The PIN associated with the transaction could not be
* verified.
* - `verification_data_failed` - The verification data associated with the
* transaction has failed.
* - `surcharge_amount_not_supported_by_debit_network_issuer` - The surcharge
* amount is not supported by the debit network issuer.
* - `cash_service_not_available` - Cash service is not available for this
* transaction.
* - `cashback_request_exceeds_issuer_limit` - The cashback request exceeds the
* issuer limit.
* - `transaction_amount_exceeds_pre_authorized_approval_amount` - The transaction
* amount exceeds the pre-authorized approval amount.
* - `transaction_does_not_qualify_for_visa_pin` - The transaction does not qualify
* for Visa PIN processing.
* - `offline_declined` - The transaction was declined offline.
* - `unable_to_go_online` - The terminal was unable to go online to process the
* transaction.
* - `valid_account_but_amount_not_supported` - The account is valid but the
* transaction amount is not supported.
* - `invalid_use_of_merchant_category_code_correct_and_reattempt` - The merchant
* category code was used incorrectly; correct it and reattempt the transaction.
* - `card_authentication_failed` - The card authentication process has failed.
*/
reason:
| 'do_not_honor'
| 'activity_count_limit_exceeded'
| 'refer_to_card_issuer'
| 'refer_to_card_issuer_special_condition'
| 'invalid_merchant'
| 'pick_up_card'
| 'error'
| 'pick_up_card_special'
| 'invalid_transaction'
| 'invalid_amount'
| 'invalid_account_number'
| 'no_such_issuer'
| 're_enter_transaction'
| 'no_credit_account'
| 'pick_up_card_lost'
| 'pick_up_card_stolen'
| 'closed_account'
| 'insufficient_funds'
| 'no_checking_account'
| 'no_savings_account'
| 'expired_card'
| 'transaction_not_permitted_to_cardholder'
| 'transaction_not_allowed_at_terminal'
| 'transaction_not_supported_or_blocked_by_issuer'
| 'suspected_fraud'
| 'activity_amount_limit_exceeded'
| 'restricted_card'
| 'security_violation'
| 'transaction_does_not_fulfill_anti_money_laundering_requirement'
| 'blocked_by_cardholder'
| 'blocked_first_use'
| 'credit_issuer_unavailable'
| 'negative_card_verification_value_results'
| 'issuer_unavailable'
| 'financial_institution_cannot_be_found'
| 'transaction_cannot_be_completed'
| 'duplicate_transaction'
| 'system_malfunction'
| 'additional_customer_authentication_required'
| 'surcharge_amount_not_permitted'
| 'decline_for_cvv2_failure'
| 'stop_payment_order'
| 'revocation_of_authorization_order'
| 'revocation_of_all_authorizations_order'
| 'unable_to_locate_record'
| 'file_is_temporarily_unavailable'
| 'incorrect_pin'
| 'allowable_number_of_pin_entry_tries_exceeded'
| 'unable_to_locate_previous_message'
| 'pin_error_found'
| 'cannot_verify_pin'
| 'verification_data_failed'
| 'surcharge_amount_not_supported_by_debit_network_issuer'
| 'cash_service_not_available'
| 'cashback_request_exceeds_issuer_limit'
| 'transaction_amount_exceeds_pre_authorized_approval_amount'
| 'transaction_does_not_qualify_for_visa_pin'
| 'offline_declined'
| 'unable_to_go_online'
| 'valid_account_but_amount_not_supported'
| 'invalid_use_of_merchant_category_code_correct_and_reattempt'
| 'card_authentication_failed';
}
/**
* The amount that was transferred. The receiving bank will have converted this to
* the cardholder's currency. The amount that is applied to your Increase account
* matches the currency of your account.
*/
export interface PresentmentAmount {
/**
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code.
*
* - `AFN` - AFN
* - `EUR` - EUR
* - `ALL` - ALL
* - `DZD` - DZD
* - `USD` - USD
* - `AOA` - AOA
* - `ARS` - ARS
* - `AMD` - AMD
* - `AWG` - AWG
* - `AUD` - AUD
* - `AZN` - AZN
* - `BSD` - BSD
* - `BHD` - BHD
* - `BDT` - BDT
* - `BBD` - BBD
* - `BYN` - BYN
* - `BZD` - BZD
* - `BMD` - BMD
* - `INR` - INR
* - `BTN` - BTN
* - `BOB` - BOB
* - `BOV` - BOV
* - `BAM` - BAM
* - `BWP` - BWP
* - `NOK` - NOK
* - `BRL` - BRL
* - `BND` - BND
* - `BGN` - BGN
* - `BIF` - BIF
* - `CVE` - CVE
* - `KHR` - KHR
* - `CAD` - CAD
* - `KYD` - KYD
* - `CLP` - CLP
* - `CLF` - CLF
* - `CNY` - CNY
* - `COP` - COP
* - `COU` - COU
* - `KMF` - KMF
* - `CDF` - CDF
* - `NZD` - NZD
* - `CRC` - CRC
* - `CUP` - CUP
* - `CZK` - CZK
* - `DKK` - DKK
* - `DJF` - DJF
* - `DOP` - DOP
* - `EGP` - EGP
* - `SVC` - SVC
* - `ERN` - ERN
* - `SZL` - SZL
* - `ETB` - ETB
* - `FKP` - FKP
* - `FJD` - FJD
* - `GMD` - GMD
* - `GEL` - GEL
* - `GHS` - GHS
* - `GIP` - GIP
* - `GTQ` - GTQ
* - `GBP` - GBP
* - `GNF` - GNF
* - `GYD` - GYD
* - `HTG` - HTG
* - `HNL` - HNL
* - `HKD` - HKD
* - `HUF` - HUF
* - `ISK` - ISK
* - `IDR` - IDR
* - `IRR` - IRR
* - `IQD` - IQD
* - `ILS` - ILS
* - `JMD` - JMD
* - `JPY` - JPY
* - `JOD` - JOD
* - `KZT` - KZT
* - `KES` - KES
* - `KPW` - KPW
* - `KRW` - KRW
* - `KWD` - KWD
* - `KGS` - KGS
* - `LAK` - LAK
* - `LBP` - LBP
* - `LSL` - LSL
* - `ZAR` - ZAR
* - `LRD` - LRD
* - `LYD` - LYD
* - `CHF` - CHF
* - `MOP` - MOP
* - `MKD` - MKD
* - `MGA` - MGA
* - `MWK` - MWK
* - `MYR` - MYR
* - `MVR` - MVR
* - `MRU` - MRU
* - `MUR` - MUR
* - `MXN` - MXN
* - `MXV` - MXV
* - `MDL` - MDL
* - `MNT` - MNT
* - `MAD` - MAD
* - `MZN` - MZN
* - `MMK` - MMK
* - `NAD` - NAD
* - `NPR` - NPR
* - `NIO` - NIO
* - `NGN` - NGN
* - `OMR` - OMR
* - `PKR` - PKR
* - `PAB` - PAB
* - `PGK` - PGK
* - `PYG` - PYG
* - `PEN` - PEN
* - `PHP` - PHP
* - `PLN` - PLN
* - `QAR` - QAR
* - `RON` - RON
* - `RUB` - RUB
* - `RWF` - RWF
* - `SHP` - SHP
* - `WST` - WST
* - `STN` - STN
* - `SAR` - SAR
* - `RSD` - RSD
* - `SCR` - SCR
* - `SLE` - SLE
* - `SGD` - SGD
* - `SBD` - SBD
* - `SOS` - SOS
* - `SSP` - SSP
* - `LKR` - LKR
* - `SDG` - SDG
* - `SRD` - SRD
* - `SEK` - SEK
* - `CHE` - CHE
* - `CHW` - CHW
* - `SYP` - SYP
* - `TWD` - TWD
* - `TJS` - TJS
* - `TZS` - TZS
* - `THB` - THB
* - `TOP` - TOP
* - `TTD` - TTD
* - `TND` - TND
* - `TRY` - TRY
* - `TMT` - TMT
* - `UGX` - UGX
* - `UAH` - UAH
* - `AED` - AED
* - `USN` - USN
* - `UYU` - UYU
* - `UYI` - UYI
* - `UYW` - UYW
* - `UZS` - UZS
* - `VUV` - VUV
* - `VES` - VES
* - `VED` - VED
* - `VND` - VND
* - `YER` - YER
* - `ZMW` - ZMW
* - `ZWG` - ZWG
*/
currency:
| 'AFN'
| 'EUR'
| 'ALL'
| 'DZD'
| 'USD'
| 'AOA'
| 'ARS'
| 'AMD'
| 'AWG'
| 'AUD'
| 'AZN'
| 'BSD'
| 'BHD'
| 'BDT'
| 'BBD'
| 'BYN'
| 'BZD'
| 'BMD'
| 'INR'
| 'BTN'
| 'BOB'
| 'BOV'
| 'BAM'
| 'BWP'
| 'NOK'
| 'BRL'
| 'BND'
| 'BGN'
| 'BIF'
| 'CVE'
| 'KHR'
| 'CAD'
| 'KYD'
| 'CLP'
| 'CLF'
| 'CNY'
| 'COP'
| 'COU'
| 'KMF'
| 'CDF'
| 'NZD'
| 'CRC'
| 'CUP'
| 'CZK'
| 'DKK'
| 'DJF'
| 'DOP'
| 'EGP'
| 'SVC'
| 'ERN'
| 'SZL'
| 'ETB'
| 'FKP'
| 'FJD'
| 'GMD'
| 'GEL'
| 'GHS'
| 'GIP'
| 'GTQ'
| 'GBP'
| 'GNF'
| 'GYD'
| 'HTG'
| 'HNL'
| 'HKD'
| 'HUF'
| 'ISK'
| 'IDR'
| 'IRR'
| 'IQD'
| 'ILS'
| 'JMD'
| 'JPY'
| 'JOD'
| 'KZT'
| 'KES'
| 'KPW'
| 'KRW'
| 'KWD'
| 'KGS'
| 'LAK'
| 'LBP'
| 'LSL'
| 'ZAR'
| 'LRD'
| 'LYD'
| 'CHF'
| 'MOP'
| 'MKD'
| 'MGA'
| 'MWK'
| 'MYR'
| 'MVR'
| 'MRU'
| 'MUR'
| 'MXN'
| 'MXV'
| 'MDL'
| 'MNT'
| 'MAD'
| 'MZN'
| 'MMK'
| 'NAD'
| 'NPR'
| 'NIO'
| 'NGN'
| 'OMR'
| 'PKR'
| 'PAB'
| 'PGK'
| 'PYG'
| 'PEN'
| 'PHP'
| 'PLN'
| 'QAR'
| 'RON'
| 'RUB'
| 'RWF'
| 'SHP'
| 'WST'
| 'STN'
| 'SAR'
| 'RSD'
| 'SCR'
| 'SLE'
| 'SGD'
| 'SBD'
| 'SOS'
| 'SSP'
| 'LKR'
| 'SDG'
| 'SRD'
| 'SEK'
| 'CHE'
| 'CHW'
| 'SYP'
| 'TWD'
| 'TJS'
| 'TZS'
| 'THB'
| 'TOP'
| 'TTD'
| 'TND'
| 'TRY'
| 'TMT'
| 'UGX'
| 'UAH'
| 'AED'
| 'USN'
| 'UYU'
| 'UYI'
| 'UYW'
| 'UZS'
| 'VUV'
| 'VES'
| 'VED'
| 'VND'
| 'YER'
| 'ZMW'
| 'ZWG';
/**
* The amount value represented as a string containing a decimal number in major
* units (so e.g., "12.34" for $12.34).
*/