increase 0.505.0 → 0.507.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/resources/card-payments.d.mts +1231 -123
- package/resources/card-payments.d.mts.map +1 -1
- package/resources/card-payments.d.ts +1231 -123
- package/resources/card-payments.d.ts.map +1 -1
- package/resources/declined-transactions.d.mts +123 -0
- package/resources/declined-transactions.d.mts.map +1 -1
- package/resources/declined-transactions.d.ts +123 -0
- package/resources/declined-transactions.d.ts.map +1 -1
- package/resources/event-subscriptions.d.mts +6 -2
- package/resources/event-subscriptions.d.mts.map +1 -1
- package/resources/event-subscriptions.d.ts +6 -2
- package/resources/event-subscriptions.d.ts.map +1 -1
- package/resources/events.d.mts +7 -3
- package/resources/events.d.mts.map +1 -1
- package/resources/events.d.ts +7 -3
- package/resources/events.d.ts.map +1 -1
- package/resources/pending-transactions.d.mts +123 -0
- package/resources/pending-transactions.d.mts.map +1 -1
- package/resources/pending-transactions.d.ts +123 -0
- package/resources/pending-transactions.d.ts.map +1 -1
- package/resources/transactions.d.mts +369 -0
- package/resources/transactions.d.mts.map +1 -1
- package/resources/transactions.d.ts +369 -0
- package/resources/transactions.d.ts.map +1 -1
- package/src/resources/card-payments.ts +1592 -159
- package/src/resources/declined-transactions.ts +159 -0
- package/src/resources/event-subscriptions.ts +8 -0
- package/src/resources/events.ts +10 -0
- package/src/resources/pending-transactions.ts +159 -0
- package/src/resources/transactions.ts +477 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -83,11 +83,6 @@ export interface CardPayment {
|
|
|
83
83
|
*/
|
|
84
84
|
physical_card_id: string | null;
|
|
85
85
|
|
|
86
|
-
/**
|
|
87
|
-
* The scheme fees associated with this card payment.
|
|
88
|
-
*/
|
|
89
|
-
scheme_fees: Array<CardPayment.SchemeFee>;
|
|
90
|
-
|
|
91
86
|
/**
|
|
92
87
|
* The summarized state of this card payment.
|
|
93
88
|
*/
|
|
@@ -98,6 +93,8 @@ export interface CardPayment {
|
|
|
98
93
|
* `card_payment`.
|
|
99
94
|
*/
|
|
100
95
|
type: 'card_payment';
|
|
96
|
+
|
|
97
|
+
[k: string]: unknown;
|
|
101
98
|
}
|
|
102
99
|
|
|
103
100
|
export namespace CardPayment {
|
|
@@ -986,6 +983,11 @@ export namespace CardPayment {
|
|
|
986
983
|
*/
|
|
987
984
|
real_time_decision_id: string | null;
|
|
988
985
|
|
|
986
|
+
/**
|
|
987
|
+
* The scheme fees associated with this card authorization.
|
|
988
|
+
*/
|
|
989
|
+
scheme_fees: Array<CardAuthorization.SchemeFee>;
|
|
990
|
+
|
|
989
991
|
/**
|
|
990
992
|
* The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
|
991
993
|
* is transacting with.
|
|
@@ -1456,6 +1458,160 @@ export namespace CardPayment {
|
|
|
1456
1458
|
transaction_id: string | null;
|
|
1457
1459
|
}
|
|
1458
1460
|
|
|
1461
|
+
export interface SchemeFee {
|
|
1462
|
+
/**
|
|
1463
|
+
* The fee amount given as a string containing a decimal number.
|
|
1464
|
+
*/
|
|
1465
|
+
amount: string;
|
|
1466
|
+
|
|
1467
|
+
/**
|
|
1468
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
1469
|
+
* created.
|
|
1470
|
+
*/
|
|
1471
|
+
created_at: string;
|
|
1472
|
+
|
|
1473
|
+
/**
|
|
1474
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
1475
|
+
* reimbursement.
|
|
1476
|
+
*
|
|
1477
|
+
* - `USD` - US Dollar (USD)
|
|
1478
|
+
*/
|
|
1479
|
+
currency: 'USD';
|
|
1480
|
+
|
|
1481
|
+
/**
|
|
1482
|
+
* The type of fee being assessed.
|
|
1483
|
+
*
|
|
1484
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
1485
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
1486
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
1487
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
1488
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
1489
|
+
* cross-border transactions presented and settled in different currencies.
|
|
1490
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
1491
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
1492
|
+
* transactions. Authorization is the process of approving or declining the
|
|
1493
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
1494
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
1495
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
1496
|
+
* authorization transactions. Authorization is the process of approving or
|
|
1497
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
1498
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
1499
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
1500
|
+
* authorization transactions. Authorization is the process of approving or
|
|
1501
|
+
* declining the transaction amount specified.
|
|
1502
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
1503
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
1504
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
1505
|
+
* complete or partial actions of a previous authorization request.
|
|
1506
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
1507
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
1508
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
1509
|
+
* message that undoes the complete or partial actions of a previous
|
|
1510
|
+
* authorization request.
|
|
1511
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
1512
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
1513
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
1514
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
1515
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
1516
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
1517
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
1518
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
1519
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
1520
|
+
* VisaNet Access Point.
|
|
1521
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
1522
|
+
* domestic Issuer for Account Number Verification.
|
|
1523
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
1524
|
+
* the international Issuer for Account Number Verification.
|
|
1525
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
1526
|
+
* US-Canada Issuer for Account Number Verification.
|
|
1527
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
1528
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
1529
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
1530
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
1531
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
1532
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
1533
|
+
* transaction is excluded from the sales volume calculation.
|
|
1534
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
1535
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
1536
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
1537
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
1538
|
+
* Debit and Prepaid card transactions.
|
|
1539
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
1540
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
1541
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
1542
|
+
* transactions.
|
|
1543
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
1544
|
+
* draft original for a purchase transaction.
|
|
1545
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
1546
|
+
* international sales draft original for a purchase transaction.
|
|
1547
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
1548
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
1549
|
+
* Apple Pay transactions.
|
|
1550
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
1551
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
1552
|
+
* transactions.
|
|
1553
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
1554
|
+
* financial draft - Issuer.
|
|
1555
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
1556
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
1557
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
1558
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
1559
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
1560
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
1561
|
+
* Credit cards.
|
|
1562
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
1563
|
+
* for Commercial Credit cards.
|
|
1564
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
1565
|
+
* Acceleration Program Fee.
|
|
1566
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
1567
|
+
* for Commercial Credit cards.
|
|
1568
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
1569
|
+
* for processing transactions on its network.
|
|
1570
|
+
*/
|
|
1571
|
+
fee_type:
|
|
1572
|
+
| 'visa_international_service_assessment_single_currency'
|
|
1573
|
+
| 'visa_international_service_assessment_cross_currency'
|
|
1574
|
+
| 'visa_authorization_domestic_point_of_sale'
|
|
1575
|
+
| 'visa_authorization_international_point_of_sale'
|
|
1576
|
+
| 'visa_authorization_canada_point_of_sale'
|
|
1577
|
+
| 'visa_authorization_reversal_point_of_sale'
|
|
1578
|
+
| 'visa_authorization_reversal_international_point_of_sale'
|
|
1579
|
+
| 'visa_authorization_address_verification_service'
|
|
1580
|
+
| 'visa_advanced_authorization'
|
|
1581
|
+
| 'visa_message_transmission'
|
|
1582
|
+
| 'visa_account_verification_domestic'
|
|
1583
|
+
| 'visa_account_verification_international'
|
|
1584
|
+
| 'visa_account_verification_canada'
|
|
1585
|
+
| 'visa_corporate_acceptance_fee'
|
|
1586
|
+
| 'visa_consumer_debit_acceptance_fee'
|
|
1587
|
+
| 'visa_business_debit_acceptance_fee'
|
|
1588
|
+
| 'visa_purchasing_acceptance_fee'
|
|
1589
|
+
| 'visa_purchase_domestic'
|
|
1590
|
+
| 'visa_purchase_international'
|
|
1591
|
+
| 'visa_credit_purchase_token'
|
|
1592
|
+
| 'visa_debit_purchase_token'
|
|
1593
|
+
| 'visa_clearing_transmission'
|
|
1594
|
+
| 'visa_direct_authorization'
|
|
1595
|
+
| 'visa_direct_transaction_domestic'
|
|
1596
|
+
| 'visa_service_commercial_credit'
|
|
1597
|
+
| 'visa_advertising_service_commercial_credit'
|
|
1598
|
+
| 'visa_community_growth_acceleration_program'
|
|
1599
|
+
| 'visa_processing_guarantee_commercial_credit'
|
|
1600
|
+
| 'pulse_switch_fee';
|
|
1601
|
+
|
|
1602
|
+
/**
|
|
1603
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
1604
|
+
* amount.
|
|
1605
|
+
*/
|
|
1606
|
+
fixed_component: string | null;
|
|
1607
|
+
|
|
1608
|
+
/**
|
|
1609
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
1610
|
+
* 0.015 for 1.5%).
|
|
1611
|
+
*/
|
|
1612
|
+
variable_rate: string | null;
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1459
1615
|
/**
|
|
1460
1616
|
* Fields related to verification of cardholder-provided values.
|
|
1461
1617
|
*/
|
|
@@ -1726,6 +1882,11 @@ export namespace CardPayment {
|
|
|
1726
1882
|
*/
|
|
1727
1883
|
real_time_decision_id: string | null;
|
|
1728
1884
|
|
|
1885
|
+
/**
|
|
1886
|
+
* The scheme fees associated with this card balance inquiry.
|
|
1887
|
+
*/
|
|
1888
|
+
scheme_fees: Array<CardBalanceInquiry.SchemeFee>;
|
|
1889
|
+
|
|
1729
1890
|
/**
|
|
1730
1891
|
* The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
|
1731
1892
|
* is transacting with.
|
|
@@ -2196,6 +2357,160 @@ export namespace CardPayment {
|
|
|
2196
2357
|
transaction_id: string | null;
|
|
2197
2358
|
}
|
|
2198
2359
|
|
|
2360
|
+
export interface SchemeFee {
|
|
2361
|
+
/**
|
|
2362
|
+
* The fee amount given as a string containing a decimal number.
|
|
2363
|
+
*/
|
|
2364
|
+
amount: string;
|
|
2365
|
+
|
|
2366
|
+
/**
|
|
2367
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
2368
|
+
* created.
|
|
2369
|
+
*/
|
|
2370
|
+
created_at: string;
|
|
2371
|
+
|
|
2372
|
+
/**
|
|
2373
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
2374
|
+
* reimbursement.
|
|
2375
|
+
*
|
|
2376
|
+
* - `USD` - US Dollar (USD)
|
|
2377
|
+
*/
|
|
2378
|
+
currency: 'USD';
|
|
2379
|
+
|
|
2380
|
+
/**
|
|
2381
|
+
* The type of fee being assessed.
|
|
2382
|
+
*
|
|
2383
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
2384
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
2385
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
2386
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
2387
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
2388
|
+
* cross-border transactions presented and settled in different currencies.
|
|
2389
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
2390
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
2391
|
+
* transactions. Authorization is the process of approving or declining the
|
|
2392
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
2393
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
2394
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
2395
|
+
* authorization transactions. Authorization is the process of approving or
|
|
2396
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
2397
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
2398
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
2399
|
+
* authorization transactions. Authorization is the process of approving or
|
|
2400
|
+
* declining the transaction amount specified.
|
|
2401
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
2402
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
2403
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
2404
|
+
* complete or partial actions of a previous authorization request.
|
|
2405
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
2406
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
2407
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
2408
|
+
* message that undoes the complete or partial actions of a previous
|
|
2409
|
+
* authorization request.
|
|
2410
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
2411
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
2412
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
2413
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
2414
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
2415
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
2416
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
2417
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
2418
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
2419
|
+
* VisaNet Access Point.
|
|
2420
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
2421
|
+
* domestic Issuer for Account Number Verification.
|
|
2422
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
2423
|
+
* the international Issuer for Account Number Verification.
|
|
2424
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
2425
|
+
* US-Canada Issuer for Account Number Verification.
|
|
2426
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
2427
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
2428
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
2429
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
2430
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
2431
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
2432
|
+
* transaction is excluded from the sales volume calculation.
|
|
2433
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
2434
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
2435
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
2436
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
2437
|
+
* Debit and Prepaid card transactions.
|
|
2438
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
2439
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
2440
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
2441
|
+
* transactions.
|
|
2442
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
2443
|
+
* draft original for a purchase transaction.
|
|
2444
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
2445
|
+
* international sales draft original for a purchase transaction.
|
|
2446
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
2447
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
2448
|
+
* Apple Pay transactions.
|
|
2449
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
2450
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
2451
|
+
* transactions.
|
|
2452
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
2453
|
+
* financial draft - Issuer.
|
|
2454
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
2455
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
2456
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
2457
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
2458
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
2459
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
2460
|
+
* Credit cards.
|
|
2461
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
2462
|
+
* for Commercial Credit cards.
|
|
2463
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
2464
|
+
* Acceleration Program Fee.
|
|
2465
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
2466
|
+
* for Commercial Credit cards.
|
|
2467
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
2468
|
+
* for processing transactions on its network.
|
|
2469
|
+
*/
|
|
2470
|
+
fee_type:
|
|
2471
|
+
| 'visa_international_service_assessment_single_currency'
|
|
2472
|
+
| 'visa_international_service_assessment_cross_currency'
|
|
2473
|
+
| 'visa_authorization_domestic_point_of_sale'
|
|
2474
|
+
| 'visa_authorization_international_point_of_sale'
|
|
2475
|
+
| 'visa_authorization_canada_point_of_sale'
|
|
2476
|
+
| 'visa_authorization_reversal_point_of_sale'
|
|
2477
|
+
| 'visa_authorization_reversal_international_point_of_sale'
|
|
2478
|
+
| 'visa_authorization_address_verification_service'
|
|
2479
|
+
| 'visa_advanced_authorization'
|
|
2480
|
+
| 'visa_message_transmission'
|
|
2481
|
+
| 'visa_account_verification_domestic'
|
|
2482
|
+
| 'visa_account_verification_international'
|
|
2483
|
+
| 'visa_account_verification_canada'
|
|
2484
|
+
| 'visa_corporate_acceptance_fee'
|
|
2485
|
+
| 'visa_consumer_debit_acceptance_fee'
|
|
2486
|
+
| 'visa_business_debit_acceptance_fee'
|
|
2487
|
+
| 'visa_purchasing_acceptance_fee'
|
|
2488
|
+
| 'visa_purchase_domestic'
|
|
2489
|
+
| 'visa_purchase_international'
|
|
2490
|
+
| 'visa_credit_purchase_token'
|
|
2491
|
+
| 'visa_debit_purchase_token'
|
|
2492
|
+
| 'visa_clearing_transmission'
|
|
2493
|
+
| 'visa_direct_authorization'
|
|
2494
|
+
| 'visa_direct_transaction_domestic'
|
|
2495
|
+
| 'visa_service_commercial_credit'
|
|
2496
|
+
| 'visa_advertising_service_commercial_credit'
|
|
2497
|
+
| 'visa_community_growth_acceleration_program'
|
|
2498
|
+
| 'visa_processing_guarantee_commercial_credit'
|
|
2499
|
+
| 'pulse_switch_fee';
|
|
2500
|
+
|
|
2501
|
+
/**
|
|
2502
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
2503
|
+
* amount.
|
|
2504
|
+
*/
|
|
2505
|
+
fixed_component: string | null;
|
|
2506
|
+
|
|
2507
|
+
/**
|
|
2508
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
2509
|
+
* 0.015 for 1.5%).
|
|
2510
|
+
*/
|
|
2511
|
+
variable_rate: string | null;
|
|
2512
|
+
}
|
|
2513
|
+
|
|
2199
2514
|
/**
|
|
2200
2515
|
* Fields related to verification of cardholder-provided values.
|
|
2201
2516
|
*/
|
|
@@ -2579,6 +2894,11 @@ export namespace CardPayment {
|
|
|
2579
2894
|
| 'suspected_card_testing'
|
|
2580
2895
|
| 'suspected_fraud';
|
|
2581
2896
|
|
|
2897
|
+
/**
|
|
2898
|
+
* The scheme fees associated with this card decline.
|
|
2899
|
+
*/
|
|
2900
|
+
scheme_fees: Array<CardDecline.SchemeFee>;
|
|
2901
|
+
|
|
2582
2902
|
/**
|
|
2583
2903
|
* The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
|
2584
2904
|
* is transacting with.
|
|
@@ -3043,6 +3363,160 @@ export namespace CardPayment {
|
|
|
3043
3363
|
transaction_id: string | null;
|
|
3044
3364
|
}
|
|
3045
3365
|
|
|
3366
|
+
export interface SchemeFee {
|
|
3367
|
+
/**
|
|
3368
|
+
* The fee amount given as a string containing a decimal number.
|
|
3369
|
+
*/
|
|
3370
|
+
amount: string;
|
|
3371
|
+
|
|
3372
|
+
/**
|
|
3373
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
3374
|
+
* created.
|
|
3375
|
+
*/
|
|
3376
|
+
created_at: string;
|
|
3377
|
+
|
|
3378
|
+
/**
|
|
3379
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
3380
|
+
* reimbursement.
|
|
3381
|
+
*
|
|
3382
|
+
* - `USD` - US Dollar (USD)
|
|
3383
|
+
*/
|
|
3384
|
+
currency: 'USD';
|
|
3385
|
+
|
|
3386
|
+
/**
|
|
3387
|
+
* The type of fee being assessed.
|
|
3388
|
+
*
|
|
3389
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
3390
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
3391
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
3392
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
3393
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
3394
|
+
* cross-border transactions presented and settled in different currencies.
|
|
3395
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
3396
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
3397
|
+
* transactions. Authorization is the process of approving or declining the
|
|
3398
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
3399
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
3400
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
3401
|
+
* authorization transactions. Authorization is the process of approving or
|
|
3402
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
3403
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
3404
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
3405
|
+
* authorization transactions. Authorization is the process of approving or
|
|
3406
|
+
* declining the transaction amount specified.
|
|
3407
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
3408
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
3409
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
3410
|
+
* complete or partial actions of a previous authorization request.
|
|
3411
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
3412
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
3413
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
3414
|
+
* message that undoes the complete or partial actions of a previous
|
|
3415
|
+
* authorization request.
|
|
3416
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
3417
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
3418
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
3419
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
3420
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
3421
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
3422
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
3423
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
3424
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
3425
|
+
* VisaNet Access Point.
|
|
3426
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
3427
|
+
* domestic Issuer for Account Number Verification.
|
|
3428
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
3429
|
+
* the international Issuer for Account Number Verification.
|
|
3430
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
3431
|
+
* US-Canada Issuer for Account Number Verification.
|
|
3432
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
3433
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
3434
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
3435
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
3436
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
3437
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
3438
|
+
* transaction is excluded from the sales volume calculation.
|
|
3439
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
3440
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
3441
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
3442
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
3443
|
+
* Debit and Prepaid card transactions.
|
|
3444
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
3445
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
3446
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
3447
|
+
* transactions.
|
|
3448
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
3449
|
+
* draft original for a purchase transaction.
|
|
3450
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
3451
|
+
* international sales draft original for a purchase transaction.
|
|
3452
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
3453
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
3454
|
+
* Apple Pay transactions.
|
|
3455
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
3456
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
3457
|
+
* transactions.
|
|
3458
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
3459
|
+
* financial draft - Issuer.
|
|
3460
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
3461
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
3462
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
3463
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
3464
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
3465
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
3466
|
+
* Credit cards.
|
|
3467
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
3468
|
+
* for Commercial Credit cards.
|
|
3469
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
3470
|
+
* Acceleration Program Fee.
|
|
3471
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
3472
|
+
* for Commercial Credit cards.
|
|
3473
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
3474
|
+
* for processing transactions on its network.
|
|
3475
|
+
*/
|
|
3476
|
+
fee_type:
|
|
3477
|
+
| 'visa_international_service_assessment_single_currency'
|
|
3478
|
+
| 'visa_international_service_assessment_cross_currency'
|
|
3479
|
+
| 'visa_authorization_domestic_point_of_sale'
|
|
3480
|
+
| 'visa_authorization_international_point_of_sale'
|
|
3481
|
+
| 'visa_authorization_canada_point_of_sale'
|
|
3482
|
+
| 'visa_authorization_reversal_point_of_sale'
|
|
3483
|
+
| 'visa_authorization_reversal_international_point_of_sale'
|
|
3484
|
+
| 'visa_authorization_address_verification_service'
|
|
3485
|
+
| 'visa_advanced_authorization'
|
|
3486
|
+
| 'visa_message_transmission'
|
|
3487
|
+
| 'visa_account_verification_domestic'
|
|
3488
|
+
| 'visa_account_verification_international'
|
|
3489
|
+
| 'visa_account_verification_canada'
|
|
3490
|
+
| 'visa_corporate_acceptance_fee'
|
|
3491
|
+
| 'visa_consumer_debit_acceptance_fee'
|
|
3492
|
+
| 'visa_business_debit_acceptance_fee'
|
|
3493
|
+
| 'visa_purchasing_acceptance_fee'
|
|
3494
|
+
| 'visa_purchase_domestic'
|
|
3495
|
+
| 'visa_purchase_international'
|
|
3496
|
+
| 'visa_credit_purchase_token'
|
|
3497
|
+
| 'visa_debit_purchase_token'
|
|
3498
|
+
| 'visa_clearing_transmission'
|
|
3499
|
+
| 'visa_direct_authorization'
|
|
3500
|
+
| 'visa_direct_transaction_domestic'
|
|
3501
|
+
| 'visa_service_commercial_credit'
|
|
3502
|
+
| 'visa_advertising_service_commercial_credit'
|
|
3503
|
+
| 'visa_community_growth_acceleration_program'
|
|
3504
|
+
| 'visa_processing_guarantee_commercial_credit'
|
|
3505
|
+
| 'pulse_switch_fee';
|
|
3506
|
+
|
|
3507
|
+
/**
|
|
3508
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
3509
|
+
* amount.
|
|
3510
|
+
*/
|
|
3511
|
+
fixed_component: string | null;
|
|
3512
|
+
|
|
3513
|
+
/**
|
|
3514
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
3515
|
+
* 0.015 for 1.5%).
|
|
3516
|
+
*/
|
|
3517
|
+
variable_rate: string | null;
|
|
3518
|
+
}
|
|
3519
|
+
|
|
3046
3520
|
/**
|
|
3047
3521
|
* Fields related to verification of cardholder-provided values.
|
|
3048
3522
|
*/
|
|
@@ -3332,6 +3806,11 @@ export namespace CardPayment {
|
|
|
3332
3806
|
*/
|
|
3333
3807
|
real_time_decision_id: string | null;
|
|
3334
3808
|
|
|
3809
|
+
/**
|
|
3810
|
+
* The scheme fees associated with this card financial.
|
|
3811
|
+
*/
|
|
3812
|
+
scheme_fees: Array<CardFinancial.SchemeFee>;
|
|
3813
|
+
|
|
3335
3814
|
/**
|
|
3336
3815
|
* The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
|
3337
3816
|
* is transacting with.
|
|
@@ -3807,6 +4286,160 @@ export namespace CardPayment {
|
|
|
3807
4286
|
transaction_id: string | null;
|
|
3808
4287
|
}
|
|
3809
4288
|
|
|
4289
|
+
export interface SchemeFee {
|
|
4290
|
+
/**
|
|
4291
|
+
* The fee amount given as a string containing a decimal number.
|
|
4292
|
+
*/
|
|
4293
|
+
amount: string;
|
|
4294
|
+
|
|
4295
|
+
/**
|
|
4296
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
4297
|
+
* created.
|
|
4298
|
+
*/
|
|
4299
|
+
created_at: string;
|
|
4300
|
+
|
|
4301
|
+
/**
|
|
4302
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
4303
|
+
* reimbursement.
|
|
4304
|
+
*
|
|
4305
|
+
* - `USD` - US Dollar (USD)
|
|
4306
|
+
*/
|
|
4307
|
+
currency: 'USD';
|
|
4308
|
+
|
|
4309
|
+
/**
|
|
4310
|
+
* The type of fee being assessed.
|
|
4311
|
+
*
|
|
4312
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
4313
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
4314
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
4315
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
4316
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
4317
|
+
* cross-border transactions presented and settled in different currencies.
|
|
4318
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
4319
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
4320
|
+
* transactions. Authorization is the process of approving or declining the
|
|
4321
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
4322
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
4323
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
4324
|
+
* authorization transactions. Authorization is the process of approving or
|
|
4325
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
4326
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
4327
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
4328
|
+
* authorization transactions. Authorization is the process of approving or
|
|
4329
|
+
* declining the transaction amount specified.
|
|
4330
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
4331
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
4332
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
4333
|
+
* complete or partial actions of a previous authorization request.
|
|
4334
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
4335
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
4336
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
4337
|
+
* message that undoes the complete or partial actions of a previous
|
|
4338
|
+
* authorization request.
|
|
4339
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
4340
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
4341
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
4342
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
4343
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
4344
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
4345
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
4346
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
4347
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
4348
|
+
* VisaNet Access Point.
|
|
4349
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
4350
|
+
* domestic Issuer for Account Number Verification.
|
|
4351
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
4352
|
+
* the international Issuer for Account Number Verification.
|
|
4353
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
4354
|
+
* US-Canada Issuer for Account Number Verification.
|
|
4355
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
4356
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
4357
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
4358
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
4359
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
4360
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
4361
|
+
* transaction is excluded from the sales volume calculation.
|
|
4362
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
4363
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
4364
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
4365
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
4366
|
+
* Debit and Prepaid card transactions.
|
|
4367
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
4368
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
4369
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
4370
|
+
* transactions.
|
|
4371
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
4372
|
+
* draft original for a purchase transaction.
|
|
4373
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
4374
|
+
* international sales draft original for a purchase transaction.
|
|
4375
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
4376
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
4377
|
+
* Apple Pay transactions.
|
|
4378
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
4379
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
4380
|
+
* transactions.
|
|
4381
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
4382
|
+
* financial draft - Issuer.
|
|
4383
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
4384
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
4385
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
4386
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
4387
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
4388
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
4389
|
+
* Credit cards.
|
|
4390
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
4391
|
+
* for Commercial Credit cards.
|
|
4392
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
4393
|
+
* Acceleration Program Fee.
|
|
4394
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
4395
|
+
* for Commercial Credit cards.
|
|
4396
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
4397
|
+
* for processing transactions on its network.
|
|
4398
|
+
*/
|
|
4399
|
+
fee_type:
|
|
4400
|
+
| 'visa_international_service_assessment_single_currency'
|
|
4401
|
+
| 'visa_international_service_assessment_cross_currency'
|
|
4402
|
+
| 'visa_authorization_domestic_point_of_sale'
|
|
4403
|
+
| 'visa_authorization_international_point_of_sale'
|
|
4404
|
+
| 'visa_authorization_canada_point_of_sale'
|
|
4405
|
+
| 'visa_authorization_reversal_point_of_sale'
|
|
4406
|
+
| 'visa_authorization_reversal_international_point_of_sale'
|
|
4407
|
+
| 'visa_authorization_address_verification_service'
|
|
4408
|
+
| 'visa_advanced_authorization'
|
|
4409
|
+
| 'visa_message_transmission'
|
|
4410
|
+
| 'visa_account_verification_domestic'
|
|
4411
|
+
| 'visa_account_verification_international'
|
|
4412
|
+
| 'visa_account_verification_canada'
|
|
4413
|
+
| 'visa_corporate_acceptance_fee'
|
|
4414
|
+
| 'visa_consumer_debit_acceptance_fee'
|
|
4415
|
+
| 'visa_business_debit_acceptance_fee'
|
|
4416
|
+
| 'visa_purchasing_acceptance_fee'
|
|
4417
|
+
| 'visa_purchase_domestic'
|
|
4418
|
+
| 'visa_purchase_international'
|
|
4419
|
+
| 'visa_credit_purchase_token'
|
|
4420
|
+
| 'visa_debit_purchase_token'
|
|
4421
|
+
| 'visa_clearing_transmission'
|
|
4422
|
+
| 'visa_direct_authorization'
|
|
4423
|
+
| 'visa_direct_transaction_domestic'
|
|
4424
|
+
| 'visa_service_commercial_credit'
|
|
4425
|
+
| 'visa_advertising_service_commercial_credit'
|
|
4426
|
+
| 'visa_community_growth_acceleration_program'
|
|
4427
|
+
| 'visa_processing_guarantee_commercial_credit'
|
|
4428
|
+
| 'pulse_switch_fee';
|
|
4429
|
+
|
|
4430
|
+
/**
|
|
4431
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
4432
|
+
* amount.
|
|
4433
|
+
*/
|
|
4434
|
+
fixed_component: string | null;
|
|
4435
|
+
|
|
4436
|
+
/**
|
|
4437
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
4438
|
+
* 0.015 for 1.5%).
|
|
4439
|
+
*/
|
|
4440
|
+
variable_rate: string | null;
|
|
4441
|
+
}
|
|
4442
|
+
|
|
3810
4443
|
/**
|
|
3811
4444
|
* Fields related to verification of cardholder-provided values.
|
|
3812
4445
|
*/
|
|
@@ -3961,6 +4594,11 @@ export namespace CardPayment {
|
|
|
3961
4594
|
*/
|
|
3962
4595
|
pending_transaction_id: string | null;
|
|
3963
4596
|
|
|
4597
|
+
/**
|
|
4598
|
+
* The scheme fees associated with this card fuel confirmation.
|
|
4599
|
+
*/
|
|
4600
|
+
scheme_fees: Array<CardFuelConfirmation.SchemeFee>;
|
|
4601
|
+
|
|
3964
4602
|
/**
|
|
3965
4603
|
* A constant representing the object's type. For this resource it will always be
|
|
3966
4604
|
* `card_fuel_confirmation`.
|
|
@@ -4006,6 +4644,160 @@ export namespace CardPayment {
|
|
|
4006
4644
|
*/
|
|
4007
4645
|
transaction_id: string | null;
|
|
4008
4646
|
}
|
|
4647
|
+
|
|
4648
|
+
export interface SchemeFee {
|
|
4649
|
+
/**
|
|
4650
|
+
* The fee amount given as a string containing a decimal number.
|
|
4651
|
+
*/
|
|
4652
|
+
amount: string;
|
|
4653
|
+
|
|
4654
|
+
/**
|
|
4655
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
4656
|
+
* created.
|
|
4657
|
+
*/
|
|
4658
|
+
created_at: string;
|
|
4659
|
+
|
|
4660
|
+
/**
|
|
4661
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
4662
|
+
* reimbursement.
|
|
4663
|
+
*
|
|
4664
|
+
* - `USD` - US Dollar (USD)
|
|
4665
|
+
*/
|
|
4666
|
+
currency: 'USD';
|
|
4667
|
+
|
|
4668
|
+
/**
|
|
4669
|
+
* The type of fee being assessed.
|
|
4670
|
+
*
|
|
4671
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
4672
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
4673
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
4674
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
4675
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
4676
|
+
* cross-border transactions presented and settled in different currencies.
|
|
4677
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
4678
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
4679
|
+
* transactions. Authorization is the process of approving or declining the
|
|
4680
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
4681
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
4682
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
4683
|
+
* authorization transactions. Authorization is the process of approving or
|
|
4684
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
4685
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
4686
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
4687
|
+
* authorization transactions. Authorization is the process of approving or
|
|
4688
|
+
* declining the transaction amount specified.
|
|
4689
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
4690
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
4691
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
4692
|
+
* complete or partial actions of a previous authorization request.
|
|
4693
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
4694
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
4695
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
4696
|
+
* message that undoes the complete or partial actions of a previous
|
|
4697
|
+
* authorization request.
|
|
4698
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
4699
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
4700
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
4701
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
4702
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
4703
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
4704
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
4705
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
4706
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
4707
|
+
* VisaNet Access Point.
|
|
4708
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
4709
|
+
* domestic Issuer for Account Number Verification.
|
|
4710
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
4711
|
+
* the international Issuer for Account Number Verification.
|
|
4712
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
4713
|
+
* US-Canada Issuer for Account Number Verification.
|
|
4714
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
4715
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
4716
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
4717
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
4718
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
4719
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
4720
|
+
* transaction is excluded from the sales volume calculation.
|
|
4721
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
4722
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
4723
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
4724
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
4725
|
+
* Debit and Prepaid card transactions.
|
|
4726
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
4727
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
4728
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
4729
|
+
* transactions.
|
|
4730
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
4731
|
+
* draft original for a purchase transaction.
|
|
4732
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
4733
|
+
* international sales draft original for a purchase transaction.
|
|
4734
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
4735
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
4736
|
+
* Apple Pay transactions.
|
|
4737
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
4738
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
4739
|
+
* transactions.
|
|
4740
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
4741
|
+
* financial draft - Issuer.
|
|
4742
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
4743
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
4744
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
4745
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
4746
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
4747
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
4748
|
+
* Credit cards.
|
|
4749
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
4750
|
+
* for Commercial Credit cards.
|
|
4751
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
4752
|
+
* Acceleration Program Fee.
|
|
4753
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
4754
|
+
* for Commercial Credit cards.
|
|
4755
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
4756
|
+
* for processing transactions on its network.
|
|
4757
|
+
*/
|
|
4758
|
+
fee_type:
|
|
4759
|
+
| 'visa_international_service_assessment_single_currency'
|
|
4760
|
+
| 'visa_international_service_assessment_cross_currency'
|
|
4761
|
+
| 'visa_authorization_domestic_point_of_sale'
|
|
4762
|
+
| 'visa_authorization_international_point_of_sale'
|
|
4763
|
+
| 'visa_authorization_canada_point_of_sale'
|
|
4764
|
+
| 'visa_authorization_reversal_point_of_sale'
|
|
4765
|
+
| 'visa_authorization_reversal_international_point_of_sale'
|
|
4766
|
+
| 'visa_authorization_address_verification_service'
|
|
4767
|
+
| 'visa_advanced_authorization'
|
|
4768
|
+
| 'visa_message_transmission'
|
|
4769
|
+
| 'visa_account_verification_domestic'
|
|
4770
|
+
| 'visa_account_verification_international'
|
|
4771
|
+
| 'visa_account_verification_canada'
|
|
4772
|
+
| 'visa_corporate_acceptance_fee'
|
|
4773
|
+
| 'visa_consumer_debit_acceptance_fee'
|
|
4774
|
+
| 'visa_business_debit_acceptance_fee'
|
|
4775
|
+
| 'visa_purchasing_acceptance_fee'
|
|
4776
|
+
| 'visa_purchase_domestic'
|
|
4777
|
+
| 'visa_purchase_international'
|
|
4778
|
+
| 'visa_credit_purchase_token'
|
|
4779
|
+
| 'visa_debit_purchase_token'
|
|
4780
|
+
| 'visa_clearing_transmission'
|
|
4781
|
+
| 'visa_direct_authorization'
|
|
4782
|
+
| 'visa_direct_transaction_domestic'
|
|
4783
|
+
| 'visa_service_commercial_credit'
|
|
4784
|
+
| 'visa_advertising_service_commercial_credit'
|
|
4785
|
+
| 'visa_community_growth_acceleration_program'
|
|
4786
|
+
| 'visa_processing_guarantee_commercial_credit'
|
|
4787
|
+
| 'pulse_switch_fee';
|
|
4788
|
+
|
|
4789
|
+
/**
|
|
4790
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
4791
|
+
* amount.
|
|
4792
|
+
*/
|
|
4793
|
+
fixed_component: string | null;
|
|
4794
|
+
|
|
4795
|
+
/**
|
|
4796
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
4797
|
+
* 0.015 for 1.5%).
|
|
4798
|
+
*/
|
|
4799
|
+
variable_rate: string | null;
|
|
4800
|
+
}
|
|
4009
4801
|
}
|
|
4010
4802
|
|
|
4011
4803
|
/**
|
|
@@ -4098,6 +4890,11 @@ export namespace CardPayment {
|
|
|
4098
4890
|
*/
|
|
4099
4891
|
real_time_decision_id: string | null;
|
|
4100
4892
|
|
|
4893
|
+
/**
|
|
4894
|
+
* The scheme fees associated with this card increment.
|
|
4895
|
+
*/
|
|
4896
|
+
scheme_fees: Array<CardIncrement.SchemeFee>;
|
|
4897
|
+
|
|
4101
4898
|
/**
|
|
4102
4899
|
* A constant representing the object's type. For this resource it will always be
|
|
4103
4900
|
* `card_increment`.
|
|
@@ -4382,6 +5179,160 @@ export namespace CardPayment {
|
|
|
4382
5179
|
*/
|
|
4383
5180
|
transaction_id: string | null;
|
|
4384
5181
|
}
|
|
5182
|
+
|
|
5183
|
+
export interface SchemeFee {
|
|
5184
|
+
/**
|
|
5185
|
+
* The fee amount given as a string containing a decimal number.
|
|
5186
|
+
*/
|
|
5187
|
+
amount: string;
|
|
5188
|
+
|
|
5189
|
+
/**
|
|
5190
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
5191
|
+
* created.
|
|
5192
|
+
*/
|
|
5193
|
+
created_at: string;
|
|
5194
|
+
|
|
5195
|
+
/**
|
|
5196
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
5197
|
+
* reimbursement.
|
|
5198
|
+
*
|
|
5199
|
+
* - `USD` - US Dollar (USD)
|
|
5200
|
+
*/
|
|
5201
|
+
currency: 'USD';
|
|
5202
|
+
|
|
5203
|
+
/**
|
|
5204
|
+
* The type of fee being assessed.
|
|
5205
|
+
*
|
|
5206
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
5207
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
5208
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
5209
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
5210
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
5211
|
+
* cross-border transactions presented and settled in different currencies.
|
|
5212
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
5213
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
5214
|
+
* transactions. Authorization is the process of approving or declining the
|
|
5215
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
5216
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
5217
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
5218
|
+
* authorization transactions. Authorization is the process of approving or
|
|
5219
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
5220
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
5221
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
5222
|
+
* authorization transactions. Authorization is the process of approving or
|
|
5223
|
+
* declining the transaction amount specified.
|
|
5224
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
5225
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
5226
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
5227
|
+
* complete or partial actions of a previous authorization request.
|
|
5228
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
5229
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
5230
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
5231
|
+
* message that undoes the complete or partial actions of a previous
|
|
5232
|
+
* authorization request.
|
|
5233
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
5234
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
5235
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
5236
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
5237
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
5238
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
5239
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
5240
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
5241
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
5242
|
+
* VisaNet Access Point.
|
|
5243
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
5244
|
+
* domestic Issuer for Account Number Verification.
|
|
5245
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
5246
|
+
* the international Issuer for Account Number Verification.
|
|
5247
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
5248
|
+
* US-Canada Issuer for Account Number Verification.
|
|
5249
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
5250
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
5251
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
5252
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
5253
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
5254
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
5255
|
+
* transaction is excluded from the sales volume calculation.
|
|
5256
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
5257
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
5258
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
5259
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
5260
|
+
* Debit and Prepaid card transactions.
|
|
5261
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
5262
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
5263
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
5264
|
+
* transactions.
|
|
5265
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
5266
|
+
* draft original for a purchase transaction.
|
|
5267
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
5268
|
+
* international sales draft original for a purchase transaction.
|
|
5269
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
5270
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
5271
|
+
* Apple Pay transactions.
|
|
5272
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
5273
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
5274
|
+
* transactions.
|
|
5275
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
5276
|
+
* financial draft - Issuer.
|
|
5277
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
5278
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
5279
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
5280
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
5281
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
5282
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
5283
|
+
* Credit cards.
|
|
5284
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
5285
|
+
* for Commercial Credit cards.
|
|
5286
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
5287
|
+
* Acceleration Program Fee.
|
|
5288
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
5289
|
+
* for Commercial Credit cards.
|
|
5290
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
5291
|
+
* for processing transactions on its network.
|
|
5292
|
+
*/
|
|
5293
|
+
fee_type:
|
|
5294
|
+
| 'visa_international_service_assessment_single_currency'
|
|
5295
|
+
| 'visa_international_service_assessment_cross_currency'
|
|
5296
|
+
| 'visa_authorization_domestic_point_of_sale'
|
|
5297
|
+
| 'visa_authorization_international_point_of_sale'
|
|
5298
|
+
| 'visa_authorization_canada_point_of_sale'
|
|
5299
|
+
| 'visa_authorization_reversal_point_of_sale'
|
|
5300
|
+
| 'visa_authorization_reversal_international_point_of_sale'
|
|
5301
|
+
| 'visa_authorization_address_verification_service'
|
|
5302
|
+
| 'visa_advanced_authorization'
|
|
5303
|
+
| 'visa_message_transmission'
|
|
5304
|
+
| 'visa_account_verification_domestic'
|
|
5305
|
+
| 'visa_account_verification_international'
|
|
5306
|
+
| 'visa_account_verification_canada'
|
|
5307
|
+
| 'visa_corporate_acceptance_fee'
|
|
5308
|
+
| 'visa_consumer_debit_acceptance_fee'
|
|
5309
|
+
| 'visa_business_debit_acceptance_fee'
|
|
5310
|
+
| 'visa_purchasing_acceptance_fee'
|
|
5311
|
+
| 'visa_purchase_domestic'
|
|
5312
|
+
| 'visa_purchase_international'
|
|
5313
|
+
| 'visa_credit_purchase_token'
|
|
5314
|
+
| 'visa_debit_purchase_token'
|
|
5315
|
+
| 'visa_clearing_transmission'
|
|
5316
|
+
| 'visa_direct_authorization'
|
|
5317
|
+
| 'visa_direct_transaction_domestic'
|
|
5318
|
+
| 'visa_service_commercial_credit'
|
|
5319
|
+
| 'visa_advertising_service_commercial_credit'
|
|
5320
|
+
| 'visa_community_growth_acceleration_program'
|
|
5321
|
+
| 'visa_processing_guarantee_commercial_credit'
|
|
5322
|
+
| 'pulse_switch_fee';
|
|
5323
|
+
|
|
5324
|
+
/**
|
|
5325
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
5326
|
+
* amount.
|
|
5327
|
+
*/
|
|
5328
|
+
fixed_component: string | null;
|
|
5329
|
+
|
|
5330
|
+
/**
|
|
5331
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
5332
|
+
* 0.015 for 1.5%).
|
|
5333
|
+
*/
|
|
5334
|
+
variable_rate: string | null;
|
|
5335
|
+
}
|
|
4385
5336
|
}
|
|
4386
5337
|
|
|
4387
5338
|
/**
|
|
@@ -4485,6 +5436,11 @@ export namespace CardPayment {
|
|
|
4485
5436
|
*/
|
|
4486
5437
|
purchase_details: CardRefund.PurchaseDetails | null;
|
|
4487
5438
|
|
|
5439
|
+
/**
|
|
5440
|
+
* The scheme fees associated with this card refund.
|
|
5441
|
+
*/
|
|
5442
|
+
scheme_fees: Array<CardRefund.SchemeFee>;
|
|
5443
|
+
|
|
4488
5444
|
/**
|
|
4489
5445
|
* The identifier of the Transaction associated with this Transaction.
|
|
4490
5446
|
*/
|
|
@@ -5100,6 +6056,160 @@ export namespace CardPayment {
|
|
|
5100
6056
|
}
|
|
5101
6057
|
}
|
|
5102
6058
|
}
|
|
6059
|
+
|
|
6060
|
+
export interface SchemeFee {
|
|
6061
|
+
/**
|
|
6062
|
+
* The fee amount given as a string containing a decimal number.
|
|
6063
|
+
*/
|
|
6064
|
+
amount: string;
|
|
6065
|
+
|
|
6066
|
+
/**
|
|
6067
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
6068
|
+
* created.
|
|
6069
|
+
*/
|
|
6070
|
+
created_at: string;
|
|
6071
|
+
|
|
6072
|
+
/**
|
|
6073
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
6074
|
+
* reimbursement.
|
|
6075
|
+
*
|
|
6076
|
+
* - `USD` - US Dollar (USD)
|
|
6077
|
+
*/
|
|
6078
|
+
currency: 'USD';
|
|
6079
|
+
|
|
6080
|
+
/**
|
|
6081
|
+
* The type of fee being assessed.
|
|
6082
|
+
*
|
|
6083
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
6084
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
6085
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
6086
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
6087
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
6088
|
+
* cross-border transactions presented and settled in different currencies.
|
|
6089
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
6090
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
6091
|
+
* transactions. Authorization is the process of approving or declining the
|
|
6092
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
6093
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
6094
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
6095
|
+
* authorization transactions. Authorization is the process of approving or
|
|
6096
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
6097
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
6098
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
6099
|
+
* authorization transactions. Authorization is the process of approving or
|
|
6100
|
+
* declining the transaction amount specified.
|
|
6101
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
6102
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
6103
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
6104
|
+
* complete or partial actions of a previous authorization request.
|
|
6105
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
6106
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
6107
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
6108
|
+
* message that undoes the complete or partial actions of a previous
|
|
6109
|
+
* authorization request.
|
|
6110
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
6111
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
6112
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
6113
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
6114
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
6115
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
6116
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
6117
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
6118
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
6119
|
+
* VisaNet Access Point.
|
|
6120
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
6121
|
+
* domestic Issuer for Account Number Verification.
|
|
6122
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
6123
|
+
* the international Issuer for Account Number Verification.
|
|
6124
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
6125
|
+
* US-Canada Issuer for Account Number Verification.
|
|
6126
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
6127
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
6128
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
6129
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
6130
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
6131
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
6132
|
+
* transaction is excluded from the sales volume calculation.
|
|
6133
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
6134
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
6135
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
6136
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
6137
|
+
* Debit and Prepaid card transactions.
|
|
6138
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
6139
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
6140
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
6141
|
+
* transactions.
|
|
6142
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
6143
|
+
* draft original for a purchase transaction.
|
|
6144
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
6145
|
+
* international sales draft original for a purchase transaction.
|
|
6146
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
6147
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
6148
|
+
* Apple Pay transactions.
|
|
6149
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
6150
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
6151
|
+
* transactions.
|
|
6152
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
6153
|
+
* financial draft - Issuer.
|
|
6154
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
6155
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
6156
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
6157
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
6158
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
6159
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
6160
|
+
* Credit cards.
|
|
6161
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
6162
|
+
* for Commercial Credit cards.
|
|
6163
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
6164
|
+
* Acceleration Program Fee.
|
|
6165
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
6166
|
+
* for Commercial Credit cards.
|
|
6167
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
6168
|
+
* for processing transactions on its network.
|
|
6169
|
+
*/
|
|
6170
|
+
fee_type:
|
|
6171
|
+
| 'visa_international_service_assessment_single_currency'
|
|
6172
|
+
| 'visa_international_service_assessment_cross_currency'
|
|
6173
|
+
| 'visa_authorization_domestic_point_of_sale'
|
|
6174
|
+
| 'visa_authorization_international_point_of_sale'
|
|
6175
|
+
| 'visa_authorization_canada_point_of_sale'
|
|
6176
|
+
| 'visa_authorization_reversal_point_of_sale'
|
|
6177
|
+
| 'visa_authorization_reversal_international_point_of_sale'
|
|
6178
|
+
| 'visa_authorization_address_verification_service'
|
|
6179
|
+
| 'visa_advanced_authorization'
|
|
6180
|
+
| 'visa_message_transmission'
|
|
6181
|
+
| 'visa_account_verification_domestic'
|
|
6182
|
+
| 'visa_account_verification_international'
|
|
6183
|
+
| 'visa_account_verification_canada'
|
|
6184
|
+
| 'visa_corporate_acceptance_fee'
|
|
6185
|
+
| 'visa_consumer_debit_acceptance_fee'
|
|
6186
|
+
| 'visa_business_debit_acceptance_fee'
|
|
6187
|
+
| 'visa_purchasing_acceptance_fee'
|
|
6188
|
+
| 'visa_purchase_domestic'
|
|
6189
|
+
| 'visa_purchase_international'
|
|
6190
|
+
| 'visa_credit_purchase_token'
|
|
6191
|
+
| 'visa_debit_purchase_token'
|
|
6192
|
+
| 'visa_clearing_transmission'
|
|
6193
|
+
| 'visa_direct_authorization'
|
|
6194
|
+
| 'visa_direct_transaction_domestic'
|
|
6195
|
+
| 'visa_service_commercial_credit'
|
|
6196
|
+
| 'visa_advertising_service_commercial_credit'
|
|
6197
|
+
| 'visa_community_growth_acceleration_program'
|
|
6198
|
+
| 'visa_processing_guarantee_commercial_credit'
|
|
6199
|
+
| 'pulse_switch_fee';
|
|
6200
|
+
|
|
6201
|
+
/**
|
|
6202
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
6203
|
+
* amount.
|
|
6204
|
+
*/
|
|
6205
|
+
fixed_component: string | null;
|
|
6206
|
+
|
|
6207
|
+
/**
|
|
6208
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
6209
|
+
* 0.015 for 1.5%).
|
|
6210
|
+
*/
|
|
6211
|
+
variable_rate: string | null;
|
|
6212
|
+
}
|
|
5103
6213
|
}
|
|
5104
6214
|
|
|
5105
6215
|
/**
|
|
@@ -5218,6 +6328,11 @@ export namespace CardPayment {
|
|
|
5218
6328
|
| 'partial_reversal'
|
|
5219
6329
|
| null;
|
|
5220
6330
|
|
|
6331
|
+
/**
|
|
6332
|
+
* The scheme fees associated with this card reversal.
|
|
6333
|
+
*/
|
|
6334
|
+
scheme_fees: Array<CardReversal.SchemeFee>;
|
|
6335
|
+
|
|
5221
6336
|
/**
|
|
5222
6337
|
* The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
|
5223
6338
|
* is transacting with.
|
|
@@ -5275,6 +6390,160 @@ export namespace CardPayment {
|
|
|
5275
6390
|
*/
|
|
5276
6391
|
transaction_id: string | null;
|
|
5277
6392
|
}
|
|
6393
|
+
|
|
6394
|
+
export interface SchemeFee {
|
|
6395
|
+
/**
|
|
6396
|
+
* The fee amount given as a string containing a decimal number.
|
|
6397
|
+
*/
|
|
6398
|
+
amount: string;
|
|
6399
|
+
|
|
6400
|
+
/**
|
|
6401
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
6402
|
+
* created.
|
|
6403
|
+
*/
|
|
6404
|
+
created_at: string;
|
|
6405
|
+
|
|
6406
|
+
/**
|
|
6407
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
6408
|
+
* reimbursement.
|
|
6409
|
+
*
|
|
6410
|
+
* - `USD` - US Dollar (USD)
|
|
6411
|
+
*/
|
|
6412
|
+
currency: 'USD';
|
|
6413
|
+
|
|
6414
|
+
/**
|
|
6415
|
+
* The type of fee being assessed.
|
|
6416
|
+
*
|
|
6417
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
6418
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
6419
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
6420
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
6421
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
6422
|
+
* cross-border transactions presented and settled in different currencies.
|
|
6423
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
6424
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
6425
|
+
* transactions. Authorization is the process of approving or declining the
|
|
6426
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
6427
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
6428
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
6429
|
+
* authorization transactions. Authorization is the process of approving or
|
|
6430
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
6431
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
6432
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
6433
|
+
* authorization transactions. Authorization is the process of approving or
|
|
6434
|
+
* declining the transaction amount specified.
|
|
6435
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
6436
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
6437
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
6438
|
+
* complete or partial actions of a previous authorization request.
|
|
6439
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
6440
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
6441
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
6442
|
+
* message that undoes the complete or partial actions of a previous
|
|
6443
|
+
* authorization request.
|
|
6444
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
6445
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
6446
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
6447
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
6448
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
6449
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
6450
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
6451
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
6452
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
6453
|
+
* VisaNet Access Point.
|
|
6454
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
6455
|
+
* domestic Issuer for Account Number Verification.
|
|
6456
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
6457
|
+
* the international Issuer for Account Number Verification.
|
|
6458
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
6459
|
+
* US-Canada Issuer for Account Number Verification.
|
|
6460
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
6461
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
6462
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
6463
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
6464
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
6465
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
6466
|
+
* transaction is excluded from the sales volume calculation.
|
|
6467
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
6468
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
6469
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
6470
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
6471
|
+
* Debit and Prepaid card transactions.
|
|
6472
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
6473
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
6474
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
6475
|
+
* transactions.
|
|
6476
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
6477
|
+
* draft original for a purchase transaction.
|
|
6478
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
6479
|
+
* international sales draft original for a purchase transaction.
|
|
6480
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
6481
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
6482
|
+
* Apple Pay transactions.
|
|
6483
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
6484
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
6485
|
+
* transactions.
|
|
6486
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
6487
|
+
* financial draft - Issuer.
|
|
6488
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
6489
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
6490
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
6491
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
6492
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
6493
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
6494
|
+
* Credit cards.
|
|
6495
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
6496
|
+
* for Commercial Credit cards.
|
|
6497
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
6498
|
+
* Acceleration Program Fee.
|
|
6499
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
6500
|
+
* for Commercial Credit cards.
|
|
6501
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
6502
|
+
* for processing transactions on its network.
|
|
6503
|
+
*/
|
|
6504
|
+
fee_type:
|
|
6505
|
+
| 'visa_international_service_assessment_single_currency'
|
|
6506
|
+
| 'visa_international_service_assessment_cross_currency'
|
|
6507
|
+
| 'visa_authorization_domestic_point_of_sale'
|
|
6508
|
+
| 'visa_authorization_international_point_of_sale'
|
|
6509
|
+
| 'visa_authorization_canada_point_of_sale'
|
|
6510
|
+
| 'visa_authorization_reversal_point_of_sale'
|
|
6511
|
+
| 'visa_authorization_reversal_international_point_of_sale'
|
|
6512
|
+
| 'visa_authorization_address_verification_service'
|
|
6513
|
+
| 'visa_advanced_authorization'
|
|
6514
|
+
| 'visa_message_transmission'
|
|
6515
|
+
| 'visa_account_verification_domestic'
|
|
6516
|
+
| 'visa_account_verification_international'
|
|
6517
|
+
| 'visa_account_verification_canada'
|
|
6518
|
+
| 'visa_corporate_acceptance_fee'
|
|
6519
|
+
| 'visa_consumer_debit_acceptance_fee'
|
|
6520
|
+
| 'visa_business_debit_acceptance_fee'
|
|
6521
|
+
| 'visa_purchasing_acceptance_fee'
|
|
6522
|
+
| 'visa_purchase_domestic'
|
|
6523
|
+
| 'visa_purchase_international'
|
|
6524
|
+
| 'visa_credit_purchase_token'
|
|
6525
|
+
| 'visa_debit_purchase_token'
|
|
6526
|
+
| 'visa_clearing_transmission'
|
|
6527
|
+
| 'visa_direct_authorization'
|
|
6528
|
+
| 'visa_direct_transaction_domestic'
|
|
6529
|
+
| 'visa_service_commercial_credit'
|
|
6530
|
+
| 'visa_advertising_service_commercial_credit'
|
|
6531
|
+
| 'visa_community_growth_acceleration_program'
|
|
6532
|
+
| 'visa_processing_guarantee_commercial_credit'
|
|
6533
|
+
| 'pulse_switch_fee';
|
|
6534
|
+
|
|
6535
|
+
/**
|
|
6536
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
6537
|
+
* amount.
|
|
6538
|
+
*/
|
|
6539
|
+
fixed_component: string | null;
|
|
6540
|
+
|
|
6541
|
+
/**
|
|
6542
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
6543
|
+
* 0.015 for 1.5%).
|
|
6544
|
+
*/
|
|
6545
|
+
variable_rate: string | null;
|
|
6546
|
+
}
|
|
5278
6547
|
}
|
|
5279
6548
|
|
|
5280
6549
|
/**
|
|
@@ -5397,6 +6666,11 @@ export namespace CardPayment {
|
|
|
5397
6666
|
*/
|
|
5398
6667
|
purchase_details: CardSettlement.PurchaseDetails | null;
|
|
5399
6668
|
|
|
6669
|
+
/**
|
|
6670
|
+
* The scheme fees associated with this card settlement.
|
|
6671
|
+
*/
|
|
6672
|
+
scheme_fees: Array<CardSettlement.SchemeFee>;
|
|
6673
|
+
|
|
5400
6674
|
/**
|
|
5401
6675
|
* Surcharge amount details, if applicable. The amount is positive if the surcharge
|
|
5402
6676
|
* is added to the overall transaction amount (surcharge), and negative if the
|
|
@@ -6020,6 +7294,160 @@ export namespace CardPayment {
|
|
|
6020
7294
|
}
|
|
6021
7295
|
}
|
|
6022
7296
|
|
|
7297
|
+
export interface SchemeFee {
|
|
7298
|
+
/**
|
|
7299
|
+
* The fee amount given as a string containing a decimal number.
|
|
7300
|
+
*/
|
|
7301
|
+
amount: string;
|
|
7302
|
+
|
|
7303
|
+
/**
|
|
7304
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
7305
|
+
* created.
|
|
7306
|
+
*/
|
|
7307
|
+
created_at: string;
|
|
7308
|
+
|
|
7309
|
+
/**
|
|
7310
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
7311
|
+
* reimbursement.
|
|
7312
|
+
*
|
|
7313
|
+
* - `USD` - US Dollar (USD)
|
|
7314
|
+
*/
|
|
7315
|
+
currency: 'USD';
|
|
7316
|
+
|
|
7317
|
+
/**
|
|
7318
|
+
* The type of fee being assessed.
|
|
7319
|
+
*
|
|
7320
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
7321
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
7322
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
7323
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
7324
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
7325
|
+
* cross-border transactions presented and settled in different currencies.
|
|
7326
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
7327
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
7328
|
+
* transactions. Authorization is the process of approving or declining the
|
|
7329
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
7330
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
7331
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
7332
|
+
* authorization transactions. Authorization is the process of approving or
|
|
7333
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
7334
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
7335
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
7336
|
+
* authorization transactions. Authorization is the process of approving or
|
|
7337
|
+
* declining the transaction amount specified.
|
|
7338
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
7339
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
7340
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
7341
|
+
* complete or partial actions of a previous authorization request.
|
|
7342
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
7343
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
7344
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
7345
|
+
* message that undoes the complete or partial actions of a previous
|
|
7346
|
+
* authorization request.
|
|
7347
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
7348
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
7349
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
7350
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
7351
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
7352
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
7353
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
7354
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
7355
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
7356
|
+
* VisaNet Access Point.
|
|
7357
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
7358
|
+
* domestic Issuer for Account Number Verification.
|
|
7359
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
7360
|
+
* the international Issuer for Account Number Verification.
|
|
7361
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
7362
|
+
* US-Canada Issuer for Account Number Verification.
|
|
7363
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
7364
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
7365
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
7366
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
7367
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
7368
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
7369
|
+
* transaction is excluded from the sales volume calculation.
|
|
7370
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
7371
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
7372
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
7373
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
7374
|
+
* Debit and Prepaid card transactions.
|
|
7375
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
7376
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
7377
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
7378
|
+
* transactions.
|
|
7379
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
7380
|
+
* draft original for a purchase transaction.
|
|
7381
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
7382
|
+
* international sales draft original for a purchase transaction.
|
|
7383
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
7384
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
7385
|
+
* Apple Pay transactions.
|
|
7386
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
7387
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
7388
|
+
* transactions.
|
|
7389
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
7390
|
+
* financial draft - Issuer.
|
|
7391
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
7392
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
7393
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
7394
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
7395
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
7396
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
7397
|
+
* Credit cards.
|
|
7398
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
7399
|
+
* for Commercial Credit cards.
|
|
7400
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
7401
|
+
* Acceleration Program Fee.
|
|
7402
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
7403
|
+
* for Commercial Credit cards.
|
|
7404
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
7405
|
+
* for processing transactions on its network.
|
|
7406
|
+
*/
|
|
7407
|
+
fee_type:
|
|
7408
|
+
| 'visa_international_service_assessment_single_currency'
|
|
7409
|
+
| 'visa_international_service_assessment_cross_currency'
|
|
7410
|
+
| 'visa_authorization_domestic_point_of_sale'
|
|
7411
|
+
| 'visa_authorization_international_point_of_sale'
|
|
7412
|
+
| 'visa_authorization_canada_point_of_sale'
|
|
7413
|
+
| 'visa_authorization_reversal_point_of_sale'
|
|
7414
|
+
| 'visa_authorization_reversal_international_point_of_sale'
|
|
7415
|
+
| 'visa_authorization_address_verification_service'
|
|
7416
|
+
| 'visa_advanced_authorization'
|
|
7417
|
+
| 'visa_message_transmission'
|
|
7418
|
+
| 'visa_account_verification_domestic'
|
|
7419
|
+
| 'visa_account_verification_international'
|
|
7420
|
+
| 'visa_account_verification_canada'
|
|
7421
|
+
| 'visa_corporate_acceptance_fee'
|
|
7422
|
+
| 'visa_consumer_debit_acceptance_fee'
|
|
7423
|
+
| 'visa_business_debit_acceptance_fee'
|
|
7424
|
+
| 'visa_purchasing_acceptance_fee'
|
|
7425
|
+
| 'visa_purchase_domestic'
|
|
7426
|
+
| 'visa_purchase_international'
|
|
7427
|
+
| 'visa_credit_purchase_token'
|
|
7428
|
+
| 'visa_debit_purchase_token'
|
|
7429
|
+
| 'visa_clearing_transmission'
|
|
7430
|
+
| 'visa_direct_authorization'
|
|
7431
|
+
| 'visa_direct_transaction_domestic'
|
|
7432
|
+
| 'visa_service_commercial_credit'
|
|
7433
|
+
| 'visa_advertising_service_commercial_credit'
|
|
7434
|
+
| 'visa_community_growth_acceleration_program'
|
|
7435
|
+
| 'visa_processing_guarantee_commercial_credit'
|
|
7436
|
+
| 'pulse_switch_fee';
|
|
7437
|
+
|
|
7438
|
+
/**
|
|
7439
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
7440
|
+
* amount.
|
|
7441
|
+
*/
|
|
7442
|
+
fixed_component: string | null;
|
|
7443
|
+
|
|
7444
|
+
/**
|
|
7445
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
7446
|
+
* 0.015 for 1.5%).
|
|
7447
|
+
*/
|
|
7448
|
+
variable_rate: string | null;
|
|
7449
|
+
}
|
|
7450
|
+
|
|
6023
7451
|
/**
|
|
6024
7452
|
* Surcharge amount details, if applicable. The amount is positive if the surcharge
|
|
6025
7453
|
* is added to the overall transaction amount (surcharge), and negative if the
|
|
@@ -6155,6 +7583,11 @@ export namespace CardPayment {
|
|
|
6155
7583
|
*/
|
|
6156
7584
|
real_time_decision_id: string | null;
|
|
6157
7585
|
|
|
7586
|
+
/**
|
|
7587
|
+
* The scheme fees associated with this card validation.
|
|
7588
|
+
*/
|
|
7589
|
+
scheme_fees: Array<CardValidation.SchemeFee>;
|
|
7590
|
+
|
|
6158
7591
|
/**
|
|
6159
7592
|
* The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
|
6160
7593
|
* is transacting with.
|
|
@@ -6625,6 +8058,160 @@ export namespace CardPayment {
|
|
|
6625
8058
|
transaction_id: string | null;
|
|
6626
8059
|
}
|
|
6627
8060
|
|
|
8061
|
+
export interface SchemeFee {
|
|
8062
|
+
/**
|
|
8063
|
+
* The fee amount given as a string containing a decimal number.
|
|
8064
|
+
*/
|
|
8065
|
+
amount: string;
|
|
8066
|
+
|
|
8067
|
+
/**
|
|
8068
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
8069
|
+
* created.
|
|
8070
|
+
*/
|
|
8071
|
+
created_at: string;
|
|
8072
|
+
|
|
8073
|
+
/**
|
|
8074
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
8075
|
+
* reimbursement.
|
|
8076
|
+
*
|
|
8077
|
+
* - `USD` - US Dollar (USD)
|
|
8078
|
+
*/
|
|
8079
|
+
currency: 'USD';
|
|
8080
|
+
|
|
8081
|
+
/**
|
|
8082
|
+
* The type of fee being assessed.
|
|
8083
|
+
*
|
|
8084
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
8085
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
8086
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
8087
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
8088
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
8089
|
+
* cross-border transactions presented and settled in different currencies.
|
|
8090
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
8091
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
8092
|
+
* transactions. Authorization is the process of approving or declining the
|
|
8093
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
8094
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
8095
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
8096
|
+
* authorization transactions. Authorization is the process of approving or
|
|
8097
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
8098
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
8099
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
8100
|
+
* authorization transactions. Authorization is the process of approving or
|
|
8101
|
+
* declining the transaction amount specified.
|
|
8102
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
8103
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
8104
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
8105
|
+
* complete or partial actions of a previous authorization request.
|
|
8106
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
8107
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
8108
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
8109
|
+
* message that undoes the complete or partial actions of a previous
|
|
8110
|
+
* authorization request.
|
|
8111
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
8112
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
8113
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
8114
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
8115
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
8116
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
8117
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
8118
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
8119
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
8120
|
+
* VisaNet Access Point.
|
|
8121
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
8122
|
+
* domestic Issuer for Account Number Verification.
|
|
8123
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
8124
|
+
* the international Issuer for Account Number Verification.
|
|
8125
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
8126
|
+
* US-Canada Issuer for Account Number Verification.
|
|
8127
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
8128
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
8129
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
8130
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
8131
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
8132
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
8133
|
+
* transaction is excluded from the sales volume calculation.
|
|
8134
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
8135
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
8136
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
8137
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
8138
|
+
* Debit and Prepaid card transactions.
|
|
8139
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
8140
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
8141
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
8142
|
+
* transactions.
|
|
8143
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
8144
|
+
* draft original for a purchase transaction.
|
|
8145
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
8146
|
+
* international sales draft original for a purchase transaction.
|
|
8147
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
8148
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
8149
|
+
* Apple Pay transactions.
|
|
8150
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
8151
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
8152
|
+
* transactions.
|
|
8153
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
8154
|
+
* financial draft - Issuer.
|
|
8155
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
8156
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
8157
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
8158
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
8159
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
8160
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
8161
|
+
* Credit cards.
|
|
8162
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
8163
|
+
* for Commercial Credit cards.
|
|
8164
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
8165
|
+
* Acceleration Program Fee.
|
|
8166
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
8167
|
+
* for Commercial Credit cards.
|
|
8168
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
8169
|
+
* for processing transactions on its network.
|
|
8170
|
+
*/
|
|
8171
|
+
fee_type:
|
|
8172
|
+
| 'visa_international_service_assessment_single_currency'
|
|
8173
|
+
| 'visa_international_service_assessment_cross_currency'
|
|
8174
|
+
| 'visa_authorization_domestic_point_of_sale'
|
|
8175
|
+
| 'visa_authorization_international_point_of_sale'
|
|
8176
|
+
| 'visa_authorization_canada_point_of_sale'
|
|
8177
|
+
| 'visa_authorization_reversal_point_of_sale'
|
|
8178
|
+
| 'visa_authorization_reversal_international_point_of_sale'
|
|
8179
|
+
| 'visa_authorization_address_verification_service'
|
|
8180
|
+
| 'visa_advanced_authorization'
|
|
8181
|
+
| 'visa_message_transmission'
|
|
8182
|
+
| 'visa_account_verification_domestic'
|
|
8183
|
+
| 'visa_account_verification_international'
|
|
8184
|
+
| 'visa_account_verification_canada'
|
|
8185
|
+
| 'visa_corporate_acceptance_fee'
|
|
8186
|
+
| 'visa_consumer_debit_acceptance_fee'
|
|
8187
|
+
| 'visa_business_debit_acceptance_fee'
|
|
8188
|
+
| 'visa_purchasing_acceptance_fee'
|
|
8189
|
+
| 'visa_purchase_domestic'
|
|
8190
|
+
| 'visa_purchase_international'
|
|
8191
|
+
| 'visa_credit_purchase_token'
|
|
8192
|
+
| 'visa_debit_purchase_token'
|
|
8193
|
+
| 'visa_clearing_transmission'
|
|
8194
|
+
| 'visa_direct_authorization'
|
|
8195
|
+
| 'visa_direct_transaction_domestic'
|
|
8196
|
+
| 'visa_service_commercial_credit'
|
|
8197
|
+
| 'visa_advertising_service_commercial_credit'
|
|
8198
|
+
| 'visa_community_growth_acceleration_program'
|
|
8199
|
+
| 'visa_processing_guarantee_commercial_credit'
|
|
8200
|
+
| 'pulse_switch_fee';
|
|
8201
|
+
|
|
8202
|
+
/**
|
|
8203
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
8204
|
+
* amount.
|
|
8205
|
+
*/
|
|
8206
|
+
fixed_component: string | null;
|
|
8207
|
+
|
|
8208
|
+
/**
|
|
8209
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
8210
|
+
* 0.015 for 1.5%).
|
|
8211
|
+
*/
|
|
8212
|
+
variable_rate: string | null;
|
|
8213
|
+
}
|
|
8214
|
+
|
|
6628
8215
|
/**
|
|
6629
8216
|
* Fields related to verification of cardholder-provided values.
|
|
6630
8217
|
*/
|
|
@@ -6742,160 +8329,6 @@ export namespace CardPayment {
|
|
|
6742
8329
|
export interface Other {}
|
|
6743
8330
|
}
|
|
6744
8331
|
|
|
6745
|
-
export interface SchemeFee {
|
|
6746
|
-
/**
|
|
6747
|
-
* The fee amount given as a string containing a decimal number.
|
|
6748
|
-
*/
|
|
6749
|
-
amount: string;
|
|
6750
|
-
|
|
6751
|
-
/**
|
|
6752
|
-
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
6753
|
-
* created.
|
|
6754
|
-
*/
|
|
6755
|
-
created_at: string;
|
|
6756
|
-
|
|
6757
|
-
/**
|
|
6758
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
6759
|
-
* reimbursement.
|
|
6760
|
-
*
|
|
6761
|
-
* - `USD` - US Dollar (USD)
|
|
6762
|
-
*/
|
|
6763
|
-
currency: 'USD';
|
|
6764
|
-
|
|
6765
|
-
/**
|
|
6766
|
-
* The type of fee being assessed.
|
|
6767
|
-
*
|
|
6768
|
-
* - `visa_international_service_assessment_single_currency` - International
|
|
6769
|
-
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
6770
|
-
* for cross-border transactions presented and settled in the same currency.
|
|
6771
|
-
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
6772
|
-
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
6773
|
-
* cross-border transactions presented and settled in different currencies.
|
|
6774
|
-
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
6775
|
-
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
6776
|
-
* transactions. Authorization is the process of approving or declining the
|
|
6777
|
-
* transaction amount specified. The fee is assessed to the Issuer.
|
|
6778
|
-
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
6779
|
-
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
6780
|
-
* authorization transactions. Authorization is the process of approving or
|
|
6781
|
-
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
6782
|
-
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
6783
|
-
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
6784
|
-
* authorization transactions. Authorization is the process of approving or
|
|
6785
|
-
* declining the transaction amount specified.
|
|
6786
|
-
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
6787
|
-
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
6788
|
-
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
6789
|
-
* complete or partial actions of a previous authorization request.
|
|
6790
|
-
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
6791
|
-
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
6792
|
-
* International reversal transactions. Authorization reversal represents a VSS
|
|
6793
|
-
* message that undoes the complete or partial actions of a previous
|
|
6794
|
-
* authorization request.
|
|
6795
|
-
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
6796
|
-
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
6797
|
-
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
6798
|
-
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
6799
|
-
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
6800
|
-
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
6801
|
-
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
6802
|
-
* based on total actual monthly processing (Visa transactions only) through a
|
|
6803
|
-
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
6804
|
-
* VisaNet Access Point.
|
|
6805
|
-
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
6806
|
-
* domestic Issuer for Account Number Verification.
|
|
6807
|
-
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
6808
|
-
* the international Issuer for Account Number Verification.
|
|
6809
|
-
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
6810
|
-
* US-Canada Issuer for Account Number Verification.
|
|
6811
|
-
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
6812
|
-
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
6813
|
-
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
6814
|
-
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
6815
|
-
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
6816
|
-
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
6817
|
-
* transaction is excluded from the sales volume calculation.
|
|
6818
|
-
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
6819
|
-
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
6820
|
-
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
6821
|
-
* portion is included in the sales volume calculation with the exception of a
|
|
6822
|
-
* Debit and Prepaid card transactions.
|
|
6823
|
-
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
6824
|
-
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
6825
|
-
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
6826
|
-
* transactions.
|
|
6827
|
-
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
6828
|
-
* draft original for a purchase transaction.
|
|
6829
|
-
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
6830
|
-
* international sales draft original for a purchase transaction.
|
|
6831
|
-
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
6832
|
-
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
6833
|
-
* Apple Pay transactions.
|
|
6834
|
-
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
6835
|
-
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
6836
|
-
* transactions.
|
|
6837
|
-
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
6838
|
-
* financial draft - Issuer.
|
|
6839
|
-
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
6840
|
-
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
6841
|
-
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
6842
|
-
* OCTs for all business application identifiers (BAIs) other than money
|
|
6843
|
-
* transfer-bank initiated (BI). BASE II transactions.
|
|
6844
|
-
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
6845
|
-
* Credit cards.
|
|
6846
|
-
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
6847
|
-
* for Commercial Credit cards.
|
|
6848
|
-
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
6849
|
-
* Acceleration Program Fee.
|
|
6850
|
-
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
6851
|
-
* for Commercial Credit cards.
|
|
6852
|
-
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
6853
|
-
* for processing transactions on its network.
|
|
6854
|
-
*/
|
|
6855
|
-
fee_type:
|
|
6856
|
-
| 'visa_international_service_assessment_single_currency'
|
|
6857
|
-
| 'visa_international_service_assessment_cross_currency'
|
|
6858
|
-
| 'visa_authorization_domestic_point_of_sale'
|
|
6859
|
-
| 'visa_authorization_international_point_of_sale'
|
|
6860
|
-
| 'visa_authorization_canada_point_of_sale'
|
|
6861
|
-
| 'visa_authorization_reversal_point_of_sale'
|
|
6862
|
-
| 'visa_authorization_reversal_international_point_of_sale'
|
|
6863
|
-
| 'visa_authorization_address_verification_service'
|
|
6864
|
-
| 'visa_advanced_authorization'
|
|
6865
|
-
| 'visa_message_transmission'
|
|
6866
|
-
| 'visa_account_verification_domestic'
|
|
6867
|
-
| 'visa_account_verification_international'
|
|
6868
|
-
| 'visa_account_verification_canada'
|
|
6869
|
-
| 'visa_corporate_acceptance_fee'
|
|
6870
|
-
| 'visa_consumer_debit_acceptance_fee'
|
|
6871
|
-
| 'visa_business_debit_acceptance_fee'
|
|
6872
|
-
| 'visa_purchasing_acceptance_fee'
|
|
6873
|
-
| 'visa_purchase_domestic'
|
|
6874
|
-
| 'visa_purchase_international'
|
|
6875
|
-
| 'visa_credit_purchase_token'
|
|
6876
|
-
| 'visa_debit_purchase_token'
|
|
6877
|
-
| 'visa_clearing_transmission'
|
|
6878
|
-
| 'visa_direct_authorization'
|
|
6879
|
-
| 'visa_direct_transaction_domestic'
|
|
6880
|
-
| 'visa_service_commercial_credit'
|
|
6881
|
-
| 'visa_advertising_service_commercial_credit'
|
|
6882
|
-
| 'visa_community_growth_acceleration_program'
|
|
6883
|
-
| 'visa_processing_guarantee_commercial_credit'
|
|
6884
|
-
| 'pulse_switch_fee';
|
|
6885
|
-
|
|
6886
|
-
/**
|
|
6887
|
-
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
6888
|
-
* amount.
|
|
6889
|
-
*/
|
|
6890
|
-
fixed_component: string | null;
|
|
6891
|
-
|
|
6892
|
-
/**
|
|
6893
|
-
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
6894
|
-
* 0.015 for 1.5%).
|
|
6895
|
-
*/
|
|
6896
|
-
variable_rate: string | null;
|
|
6897
|
-
}
|
|
6898
|
-
|
|
6899
8332
|
/**
|
|
6900
8333
|
* The summarized state of this card payment.
|
|
6901
8334
|
*/
|