increase 0.505.0 → 0.506.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 +8 -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/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/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
|
@@ -62,10 +62,6 @@ export interface CardPayment {
|
|
|
62
62
|
* The Physical Card identifier for this payment.
|
|
63
63
|
*/
|
|
64
64
|
physical_card_id: string | null;
|
|
65
|
-
/**
|
|
66
|
-
* The scheme fees associated with this card payment.
|
|
67
|
-
*/
|
|
68
|
-
scheme_fees: Array<CardPayment.SchemeFee>;
|
|
69
65
|
/**
|
|
70
66
|
* The summarized state of this card payment.
|
|
71
67
|
*/
|
|
@@ -75,6 +71,7 @@ export interface CardPayment {
|
|
|
75
71
|
* `card_payment`.
|
|
76
72
|
*/
|
|
77
73
|
type: 'card_payment';
|
|
74
|
+
[k: string]: unknown;
|
|
78
75
|
}
|
|
79
76
|
export declare namespace CardPayment {
|
|
80
77
|
interface Element {
|
|
@@ -776,6 +773,10 @@ export declare namespace CardPayment {
|
|
|
776
773
|
* transaction.
|
|
777
774
|
*/
|
|
778
775
|
real_time_decision_id: string | null;
|
|
776
|
+
/**
|
|
777
|
+
* The scheme fees associated with this card authorization.
|
|
778
|
+
*/
|
|
779
|
+
scheme_fees: Array<CardAuthorization.SchemeFee>;
|
|
779
780
|
/**
|
|
780
781
|
* The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
|
781
782
|
* is transacting with.
|
|
@@ -1163,6 +1164,125 @@ export declare namespace CardPayment {
|
|
|
1163
1164
|
*/
|
|
1164
1165
|
transaction_id: string | null;
|
|
1165
1166
|
}
|
|
1167
|
+
interface SchemeFee {
|
|
1168
|
+
/**
|
|
1169
|
+
* The fee amount given as a string containing a decimal number.
|
|
1170
|
+
*/
|
|
1171
|
+
amount: string;
|
|
1172
|
+
/**
|
|
1173
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
1174
|
+
* created.
|
|
1175
|
+
*/
|
|
1176
|
+
created_at: string;
|
|
1177
|
+
/**
|
|
1178
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
1179
|
+
* reimbursement.
|
|
1180
|
+
*
|
|
1181
|
+
* - `USD` - US Dollar (USD)
|
|
1182
|
+
*/
|
|
1183
|
+
currency: 'USD';
|
|
1184
|
+
/**
|
|
1185
|
+
* The type of fee being assessed.
|
|
1186
|
+
*
|
|
1187
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
1188
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
1189
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
1190
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
1191
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
1192
|
+
* cross-border transactions presented and settled in different currencies.
|
|
1193
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
1194
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
1195
|
+
* transactions. Authorization is the process of approving or declining the
|
|
1196
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
1197
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
1198
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
1199
|
+
* authorization transactions. Authorization is the process of approving or
|
|
1200
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
1201
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
1202
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
1203
|
+
* authorization transactions. Authorization is the process of approving or
|
|
1204
|
+
* declining the transaction amount specified.
|
|
1205
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
1206
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
1207
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
1208
|
+
* complete or partial actions of a previous authorization request.
|
|
1209
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
1210
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
1211
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
1212
|
+
* message that undoes the complete or partial actions of a previous
|
|
1213
|
+
* authorization request.
|
|
1214
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
1215
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
1216
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
1217
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
1218
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
1219
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
1220
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
1221
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
1222
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
1223
|
+
* VisaNet Access Point.
|
|
1224
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
1225
|
+
* domestic Issuer for Account Number Verification.
|
|
1226
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
1227
|
+
* the international Issuer for Account Number Verification.
|
|
1228
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
1229
|
+
* US-Canada Issuer for Account Number Verification.
|
|
1230
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
1231
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
1232
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
1233
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
1234
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
1235
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
1236
|
+
* transaction is excluded from the sales volume calculation.
|
|
1237
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
1238
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
1239
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
1240
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
1241
|
+
* Debit and Prepaid card transactions.
|
|
1242
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
1243
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
1244
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
1245
|
+
* transactions.
|
|
1246
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
1247
|
+
* draft original for a purchase transaction.
|
|
1248
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
1249
|
+
* international sales draft original for a purchase transaction.
|
|
1250
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
1251
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
1252
|
+
* Apple Pay transactions.
|
|
1253
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
1254
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
1255
|
+
* transactions.
|
|
1256
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
1257
|
+
* financial draft - Issuer.
|
|
1258
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
1259
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
1260
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
1261
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
1262
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
1263
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
1264
|
+
* Credit cards.
|
|
1265
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
1266
|
+
* for Commercial Credit cards.
|
|
1267
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
1268
|
+
* Acceleration Program Fee.
|
|
1269
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
1270
|
+
* for Commercial Credit cards.
|
|
1271
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
1272
|
+
* for processing transactions on its network.
|
|
1273
|
+
*/
|
|
1274
|
+
fee_type: 'visa_international_service_assessment_single_currency' | 'visa_international_service_assessment_cross_currency' | 'visa_authorization_domestic_point_of_sale' | 'visa_authorization_international_point_of_sale' | 'visa_authorization_canada_point_of_sale' | 'visa_authorization_reversal_point_of_sale' | 'visa_authorization_reversal_international_point_of_sale' | 'visa_authorization_address_verification_service' | 'visa_advanced_authorization' | 'visa_message_transmission' | 'visa_account_verification_domestic' | 'visa_account_verification_international' | 'visa_account_verification_canada' | 'visa_corporate_acceptance_fee' | 'visa_consumer_debit_acceptance_fee' | 'visa_business_debit_acceptance_fee' | 'visa_purchasing_acceptance_fee' | 'visa_purchase_domestic' | 'visa_purchase_international' | 'visa_credit_purchase_token' | 'visa_debit_purchase_token' | 'visa_clearing_transmission' | 'visa_direct_authorization' | 'visa_direct_transaction_domestic' | 'visa_service_commercial_credit' | 'visa_advertising_service_commercial_credit' | 'visa_community_growth_acceleration_program' | 'visa_processing_guarantee_commercial_credit' | 'pulse_switch_fee';
|
|
1275
|
+
/**
|
|
1276
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
1277
|
+
* amount.
|
|
1278
|
+
*/
|
|
1279
|
+
fixed_component: string | null;
|
|
1280
|
+
/**
|
|
1281
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
1282
|
+
* 0.015 for 1.5%).
|
|
1283
|
+
*/
|
|
1284
|
+
variable_rate: string | null;
|
|
1285
|
+
}
|
|
1166
1286
|
/**
|
|
1167
1287
|
* Fields related to verification of cardholder-provided values.
|
|
1168
1288
|
*/
|
|
@@ -1390,6 +1510,10 @@ export declare namespace CardPayment {
|
|
|
1390
1510
|
* transaction.
|
|
1391
1511
|
*/
|
|
1392
1512
|
real_time_decision_id: string | null;
|
|
1513
|
+
/**
|
|
1514
|
+
* The scheme fees associated with this card balance inquiry.
|
|
1515
|
+
*/
|
|
1516
|
+
scheme_fees: Array<CardBalanceInquiry.SchemeFee>;
|
|
1393
1517
|
/**
|
|
1394
1518
|
* The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
|
1395
1519
|
* is transacting with.
|
|
@@ -1777,6 +1901,125 @@ export declare namespace CardPayment {
|
|
|
1777
1901
|
*/
|
|
1778
1902
|
transaction_id: string | null;
|
|
1779
1903
|
}
|
|
1904
|
+
interface SchemeFee {
|
|
1905
|
+
/**
|
|
1906
|
+
* The fee amount given as a string containing a decimal number.
|
|
1907
|
+
*/
|
|
1908
|
+
amount: string;
|
|
1909
|
+
/**
|
|
1910
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
1911
|
+
* created.
|
|
1912
|
+
*/
|
|
1913
|
+
created_at: string;
|
|
1914
|
+
/**
|
|
1915
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
1916
|
+
* reimbursement.
|
|
1917
|
+
*
|
|
1918
|
+
* - `USD` - US Dollar (USD)
|
|
1919
|
+
*/
|
|
1920
|
+
currency: 'USD';
|
|
1921
|
+
/**
|
|
1922
|
+
* The type of fee being assessed.
|
|
1923
|
+
*
|
|
1924
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
1925
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
1926
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
1927
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
1928
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
1929
|
+
* cross-border transactions presented and settled in different currencies.
|
|
1930
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
1931
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
1932
|
+
* transactions. Authorization is the process of approving or declining the
|
|
1933
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
1934
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
1935
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
1936
|
+
* authorization transactions. Authorization is the process of approving or
|
|
1937
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
1938
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
1939
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
1940
|
+
* authorization transactions. Authorization is the process of approving or
|
|
1941
|
+
* declining the transaction amount specified.
|
|
1942
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
1943
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
1944
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
1945
|
+
* complete or partial actions of a previous authorization request.
|
|
1946
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
1947
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
1948
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
1949
|
+
* message that undoes the complete or partial actions of a previous
|
|
1950
|
+
* authorization request.
|
|
1951
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
1952
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
1953
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
1954
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
1955
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
1956
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
1957
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
1958
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
1959
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
1960
|
+
* VisaNet Access Point.
|
|
1961
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
1962
|
+
* domestic Issuer for Account Number Verification.
|
|
1963
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
1964
|
+
* the international Issuer for Account Number Verification.
|
|
1965
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
1966
|
+
* US-Canada Issuer for Account Number Verification.
|
|
1967
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
1968
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
1969
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
1970
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
1971
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
1972
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
1973
|
+
* transaction is excluded from the sales volume calculation.
|
|
1974
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
1975
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
1976
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
1977
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
1978
|
+
* Debit and Prepaid card transactions.
|
|
1979
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
1980
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
1981
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
1982
|
+
* transactions.
|
|
1983
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
1984
|
+
* draft original for a purchase transaction.
|
|
1985
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
1986
|
+
* international sales draft original for a purchase transaction.
|
|
1987
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
1988
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
1989
|
+
* Apple Pay transactions.
|
|
1990
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
1991
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
1992
|
+
* transactions.
|
|
1993
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
1994
|
+
* financial draft - Issuer.
|
|
1995
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
1996
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
1997
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
1998
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
1999
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
2000
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
2001
|
+
* Credit cards.
|
|
2002
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
2003
|
+
* for Commercial Credit cards.
|
|
2004
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
2005
|
+
* Acceleration Program Fee.
|
|
2006
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
2007
|
+
* for Commercial Credit cards.
|
|
2008
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
2009
|
+
* for processing transactions on its network.
|
|
2010
|
+
*/
|
|
2011
|
+
fee_type: 'visa_international_service_assessment_single_currency' | 'visa_international_service_assessment_cross_currency' | 'visa_authorization_domestic_point_of_sale' | 'visa_authorization_international_point_of_sale' | 'visa_authorization_canada_point_of_sale' | 'visa_authorization_reversal_point_of_sale' | 'visa_authorization_reversal_international_point_of_sale' | 'visa_authorization_address_verification_service' | 'visa_advanced_authorization' | 'visa_message_transmission' | 'visa_account_verification_domestic' | 'visa_account_verification_international' | 'visa_account_verification_canada' | 'visa_corporate_acceptance_fee' | 'visa_consumer_debit_acceptance_fee' | 'visa_business_debit_acceptance_fee' | 'visa_purchasing_acceptance_fee' | 'visa_purchase_domestic' | 'visa_purchase_international' | 'visa_credit_purchase_token' | 'visa_debit_purchase_token' | 'visa_clearing_transmission' | 'visa_direct_authorization' | 'visa_direct_transaction_domestic' | 'visa_service_commercial_credit' | 'visa_advertising_service_commercial_credit' | 'visa_community_growth_acceleration_program' | 'visa_processing_guarantee_commercial_credit' | 'pulse_switch_fee';
|
|
2012
|
+
/**
|
|
2013
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
2014
|
+
* amount.
|
|
2015
|
+
*/
|
|
2016
|
+
fixed_component: string | null;
|
|
2017
|
+
/**
|
|
2018
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
2019
|
+
* 0.015 for 1.5%).
|
|
2020
|
+
*/
|
|
2021
|
+
variable_rate: string | null;
|
|
2022
|
+
}
|
|
1780
2023
|
/**
|
|
1781
2024
|
* Fields related to verification of cardholder-provided values.
|
|
1782
2025
|
*/
|
|
@@ -2077,6 +2320,10 @@ export declare namespace CardPayment {
|
|
|
2077
2320
|
* reach out to support@increase.com for more information.
|
|
2078
2321
|
*/
|
|
2079
2322
|
reason: 'account_closed' | 'card_not_active' | 'card_canceled' | 'physical_card_not_active' | 'entity_not_active' | 'group_locked' | 'insufficient_funds' | 'cvv2_mismatch' | 'pin_mismatch' | 'card_expiration_mismatch' | 'transaction_not_allowed' | 'breaches_limit' | 'webhook_declined' | 'webhook_timed_out' | 'declined_by_stand_in_processing' | 'invalid_physical_card' | 'missing_original_authorization' | 'invalid_cryptogram' | 'failed_3ds_authentication' | 'suspected_card_testing' | 'suspected_fraud';
|
|
2323
|
+
/**
|
|
2324
|
+
* The scheme fees associated with this card decline.
|
|
2325
|
+
*/
|
|
2326
|
+
scheme_fees: Array<CardDecline.SchemeFee>;
|
|
2080
2327
|
/**
|
|
2081
2328
|
* The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
|
2082
2329
|
* is transacting with.
|
|
@@ -2459,6 +2706,125 @@ export declare namespace CardPayment {
|
|
|
2459
2706
|
*/
|
|
2460
2707
|
transaction_id: string | null;
|
|
2461
2708
|
}
|
|
2709
|
+
interface SchemeFee {
|
|
2710
|
+
/**
|
|
2711
|
+
* The fee amount given as a string containing a decimal number.
|
|
2712
|
+
*/
|
|
2713
|
+
amount: string;
|
|
2714
|
+
/**
|
|
2715
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
2716
|
+
* created.
|
|
2717
|
+
*/
|
|
2718
|
+
created_at: string;
|
|
2719
|
+
/**
|
|
2720
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
2721
|
+
* reimbursement.
|
|
2722
|
+
*
|
|
2723
|
+
* - `USD` - US Dollar (USD)
|
|
2724
|
+
*/
|
|
2725
|
+
currency: 'USD';
|
|
2726
|
+
/**
|
|
2727
|
+
* The type of fee being assessed.
|
|
2728
|
+
*
|
|
2729
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
2730
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
2731
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
2732
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
2733
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
2734
|
+
* cross-border transactions presented and settled in different currencies.
|
|
2735
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
2736
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
2737
|
+
* transactions. Authorization is the process of approving or declining the
|
|
2738
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
2739
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
2740
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
2741
|
+
* authorization transactions. Authorization is the process of approving or
|
|
2742
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
2743
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
2744
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
2745
|
+
* authorization transactions. Authorization is the process of approving or
|
|
2746
|
+
* declining the transaction amount specified.
|
|
2747
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
2748
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
2749
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
2750
|
+
* complete or partial actions of a previous authorization request.
|
|
2751
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
2752
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
2753
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
2754
|
+
* message that undoes the complete or partial actions of a previous
|
|
2755
|
+
* authorization request.
|
|
2756
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
2757
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
2758
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
2759
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
2760
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
2761
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
2762
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
2763
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
2764
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
2765
|
+
* VisaNet Access Point.
|
|
2766
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
2767
|
+
* domestic Issuer for Account Number Verification.
|
|
2768
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
2769
|
+
* the international Issuer for Account Number Verification.
|
|
2770
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
2771
|
+
* US-Canada Issuer for Account Number Verification.
|
|
2772
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
2773
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
2774
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
2775
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
2776
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
2777
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
2778
|
+
* transaction is excluded from the sales volume calculation.
|
|
2779
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
2780
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
2781
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
2782
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
2783
|
+
* Debit and Prepaid card transactions.
|
|
2784
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
2785
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
2786
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
2787
|
+
* transactions.
|
|
2788
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
2789
|
+
* draft original for a purchase transaction.
|
|
2790
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
2791
|
+
* international sales draft original for a purchase transaction.
|
|
2792
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
2793
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
2794
|
+
* Apple Pay transactions.
|
|
2795
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
2796
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
2797
|
+
* transactions.
|
|
2798
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
2799
|
+
* financial draft - Issuer.
|
|
2800
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
2801
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
2802
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
2803
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
2804
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
2805
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
2806
|
+
* Credit cards.
|
|
2807
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
2808
|
+
* for Commercial Credit cards.
|
|
2809
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
2810
|
+
* Acceleration Program Fee.
|
|
2811
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
2812
|
+
* for Commercial Credit cards.
|
|
2813
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
2814
|
+
* for processing transactions on its network.
|
|
2815
|
+
*/
|
|
2816
|
+
fee_type: 'visa_international_service_assessment_single_currency' | 'visa_international_service_assessment_cross_currency' | 'visa_authorization_domestic_point_of_sale' | 'visa_authorization_international_point_of_sale' | 'visa_authorization_canada_point_of_sale' | 'visa_authorization_reversal_point_of_sale' | 'visa_authorization_reversal_international_point_of_sale' | 'visa_authorization_address_verification_service' | 'visa_advanced_authorization' | 'visa_message_transmission' | 'visa_account_verification_domestic' | 'visa_account_verification_international' | 'visa_account_verification_canada' | 'visa_corporate_acceptance_fee' | 'visa_consumer_debit_acceptance_fee' | 'visa_business_debit_acceptance_fee' | 'visa_purchasing_acceptance_fee' | 'visa_purchase_domestic' | 'visa_purchase_international' | 'visa_credit_purchase_token' | 'visa_debit_purchase_token' | 'visa_clearing_transmission' | 'visa_direct_authorization' | 'visa_direct_transaction_domestic' | 'visa_service_commercial_credit' | 'visa_advertising_service_commercial_credit' | 'visa_community_growth_acceleration_program' | 'visa_processing_guarantee_commercial_credit' | 'pulse_switch_fee';
|
|
2817
|
+
/**
|
|
2818
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
2819
|
+
* amount.
|
|
2820
|
+
*/
|
|
2821
|
+
fixed_component: string | null;
|
|
2822
|
+
/**
|
|
2823
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
2824
|
+
* 0.015 for 1.5%).
|
|
2825
|
+
*/
|
|
2826
|
+
variable_rate: string | null;
|
|
2827
|
+
}
|
|
2462
2828
|
/**
|
|
2463
2829
|
* Fields related to verification of cardholder-provided values.
|
|
2464
2830
|
*/
|
|
@@ -2697,6 +3063,10 @@ export declare namespace CardPayment {
|
|
|
2697
3063
|
* transaction.
|
|
2698
3064
|
*/
|
|
2699
3065
|
real_time_decision_id: string | null;
|
|
3066
|
+
/**
|
|
3067
|
+
* The scheme fees associated with this card financial.
|
|
3068
|
+
*/
|
|
3069
|
+
scheme_fees: Array<CardFinancial.SchemeFee>;
|
|
2700
3070
|
/**
|
|
2701
3071
|
* The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
|
2702
3072
|
* is transacting with.
|
|
@@ -3088,6 +3458,125 @@ export declare namespace CardPayment {
|
|
|
3088
3458
|
*/
|
|
3089
3459
|
transaction_id: string | null;
|
|
3090
3460
|
}
|
|
3461
|
+
interface SchemeFee {
|
|
3462
|
+
/**
|
|
3463
|
+
* The fee amount given as a string containing a decimal number.
|
|
3464
|
+
*/
|
|
3465
|
+
amount: string;
|
|
3466
|
+
/**
|
|
3467
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
3468
|
+
* created.
|
|
3469
|
+
*/
|
|
3470
|
+
created_at: string;
|
|
3471
|
+
/**
|
|
3472
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
3473
|
+
* reimbursement.
|
|
3474
|
+
*
|
|
3475
|
+
* - `USD` - US Dollar (USD)
|
|
3476
|
+
*/
|
|
3477
|
+
currency: 'USD';
|
|
3478
|
+
/**
|
|
3479
|
+
* The type of fee being assessed.
|
|
3480
|
+
*
|
|
3481
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
3482
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
3483
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
3484
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
3485
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
3486
|
+
* cross-border transactions presented and settled in different currencies.
|
|
3487
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
3488
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
3489
|
+
* transactions. Authorization is the process of approving or declining the
|
|
3490
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
3491
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
3492
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
3493
|
+
* authorization transactions. Authorization is the process of approving or
|
|
3494
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
3495
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
3496
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
3497
|
+
* authorization transactions. Authorization is the process of approving or
|
|
3498
|
+
* declining the transaction amount specified.
|
|
3499
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
3500
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
3501
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
3502
|
+
* complete or partial actions of a previous authorization request.
|
|
3503
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
3504
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
3505
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
3506
|
+
* message that undoes the complete or partial actions of a previous
|
|
3507
|
+
* authorization request.
|
|
3508
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
3509
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
3510
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
3511
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
3512
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
3513
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
3514
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
3515
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
3516
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
3517
|
+
* VisaNet Access Point.
|
|
3518
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
3519
|
+
* domestic Issuer for Account Number Verification.
|
|
3520
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
3521
|
+
* the international Issuer for Account Number Verification.
|
|
3522
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
3523
|
+
* US-Canada Issuer for Account Number Verification.
|
|
3524
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
3525
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
3526
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
3527
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
3528
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
3529
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
3530
|
+
* transaction is excluded from the sales volume calculation.
|
|
3531
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
3532
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
3533
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
3534
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
3535
|
+
* Debit and Prepaid card transactions.
|
|
3536
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
3537
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
3538
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
3539
|
+
* transactions.
|
|
3540
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
3541
|
+
* draft original for a purchase transaction.
|
|
3542
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
3543
|
+
* international sales draft original for a purchase transaction.
|
|
3544
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
3545
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
3546
|
+
* Apple Pay transactions.
|
|
3547
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
3548
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
3549
|
+
* transactions.
|
|
3550
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
3551
|
+
* financial draft - Issuer.
|
|
3552
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
3553
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
3554
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
3555
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
3556
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
3557
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
3558
|
+
* Credit cards.
|
|
3559
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
3560
|
+
* for Commercial Credit cards.
|
|
3561
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
3562
|
+
* Acceleration Program Fee.
|
|
3563
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
3564
|
+
* for Commercial Credit cards.
|
|
3565
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
3566
|
+
* for processing transactions on its network.
|
|
3567
|
+
*/
|
|
3568
|
+
fee_type: 'visa_international_service_assessment_single_currency' | 'visa_international_service_assessment_cross_currency' | 'visa_authorization_domestic_point_of_sale' | 'visa_authorization_international_point_of_sale' | 'visa_authorization_canada_point_of_sale' | 'visa_authorization_reversal_point_of_sale' | 'visa_authorization_reversal_international_point_of_sale' | 'visa_authorization_address_verification_service' | 'visa_advanced_authorization' | 'visa_message_transmission' | 'visa_account_verification_domestic' | 'visa_account_verification_international' | 'visa_account_verification_canada' | 'visa_corporate_acceptance_fee' | 'visa_consumer_debit_acceptance_fee' | 'visa_business_debit_acceptance_fee' | 'visa_purchasing_acceptance_fee' | 'visa_purchase_domestic' | 'visa_purchase_international' | 'visa_credit_purchase_token' | 'visa_debit_purchase_token' | 'visa_clearing_transmission' | 'visa_direct_authorization' | 'visa_direct_transaction_domestic' | 'visa_service_commercial_credit' | 'visa_advertising_service_commercial_credit' | 'visa_community_growth_acceleration_program' | 'visa_processing_guarantee_commercial_credit' | 'pulse_switch_fee';
|
|
3569
|
+
/**
|
|
3570
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
3571
|
+
* amount.
|
|
3572
|
+
*/
|
|
3573
|
+
fixed_component: string | null;
|
|
3574
|
+
/**
|
|
3575
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
3576
|
+
* 0.015 for 1.5%).
|
|
3577
|
+
*/
|
|
3578
|
+
variable_rate: string | null;
|
|
3579
|
+
}
|
|
3091
3580
|
/**
|
|
3092
3581
|
* Fields related to verification of cardholder-provided values.
|
|
3093
3582
|
*/
|
|
@@ -3218,6 +3707,10 @@ export declare namespace CardPayment {
|
|
|
3218
3707
|
* Confirmation.
|
|
3219
3708
|
*/
|
|
3220
3709
|
pending_transaction_id: string | null;
|
|
3710
|
+
/**
|
|
3711
|
+
* The scheme fees associated with this card fuel confirmation.
|
|
3712
|
+
*/
|
|
3713
|
+
scheme_fees: Array<CardFuelConfirmation.SchemeFee>;
|
|
3221
3714
|
/**
|
|
3222
3715
|
* A constant representing the object's type. For this resource it will always be
|
|
3223
3716
|
* `card_fuel_confirmation`.
|
|
@@ -3257,6 +3750,125 @@ export declare namespace CardPayment {
|
|
|
3257
3750
|
*/
|
|
3258
3751
|
transaction_id: string | null;
|
|
3259
3752
|
}
|
|
3753
|
+
interface SchemeFee {
|
|
3754
|
+
/**
|
|
3755
|
+
* The fee amount given as a string containing a decimal number.
|
|
3756
|
+
*/
|
|
3757
|
+
amount: string;
|
|
3758
|
+
/**
|
|
3759
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
3760
|
+
* created.
|
|
3761
|
+
*/
|
|
3762
|
+
created_at: string;
|
|
3763
|
+
/**
|
|
3764
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
3765
|
+
* reimbursement.
|
|
3766
|
+
*
|
|
3767
|
+
* - `USD` - US Dollar (USD)
|
|
3768
|
+
*/
|
|
3769
|
+
currency: 'USD';
|
|
3770
|
+
/**
|
|
3771
|
+
* The type of fee being assessed.
|
|
3772
|
+
*
|
|
3773
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
3774
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
3775
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
3776
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
3777
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
3778
|
+
* cross-border transactions presented and settled in different currencies.
|
|
3779
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
3780
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
3781
|
+
* transactions. Authorization is the process of approving or declining the
|
|
3782
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
3783
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
3784
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
3785
|
+
* authorization transactions. Authorization is the process of approving or
|
|
3786
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
3787
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
3788
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
3789
|
+
* authorization transactions. Authorization is the process of approving or
|
|
3790
|
+
* declining the transaction amount specified.
|
|
3791
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
3792
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
3793
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
3794
|
+
* complete or partial actions of a previous authorization request.
|
|
3795
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
3796
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
3797
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
3798
|
+
* message that undoes the complete or partial actions of a previous
|
|
3799
|
+
* authorization request.
|
|
3800
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
3801
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
3802
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
3803
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
3804
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
3805
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
3806
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
3807
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
3808
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
3809
|
+
* VisaNet Access Point.
|
|
3810
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
3811
|
+
* domestic Issuer for Account Number Verification.
|
|
3812
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
3813
|
+
* the international Issuer for Account Number Verification.
|
|
3814
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
3815
|
+
* US-Canada Issuer for Account Number Verification.
|
|
3816
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
3817
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
3818
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
3819
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
3820
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
3821
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
3822
|
+
* transaction is excluded from the sales volume calculation.
|
|
3823
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
3824
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
3825
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
3826
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
3827
|
+
* Debit and Prepaid card transactions.
|
|
3828
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
3829
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
3830
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
3831
|
+
* transactions.
|
|
3832
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
3833
|
+
* draft original for a purchase transaction.
|
|
3834
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
3835
|
+
* international sales draft original for a purchase transaction.
|
|
3836
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
3837
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
3838
|
+
* Apple Pay transactions.
|
|
3839
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
3840
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
3841
|
+
* transactions.
|
|
3842
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
3843
|
+
* financial draft - Issuer.
|
|
3844
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
3845
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
3846
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
3847
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
3848
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
3849
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
3850
|
+
* Credit cards.
|
|
3851
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
3852
|
+
* for Commercial Credit cards.
|
|
3853
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
3854
|
+
* Acceleration Program Fee.
|
|
3855
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
3856
|
+
* for Commercial Credit cards.
|
|
3857
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
3858
|
+
* for processing transactions on its network.
|
|
3859
|
+
*/
|
|
3860
|
+
fee_type: 'visa_international_service_assessment_single_currency' | 'visa_international_service_assessment_cross_currency' | 'visa_authorization_domestic_point_of_sale' | 'visa_authorization_international_point_of_sale' | 'visa_authorization_canada_point_of_sale' | 'visa_authorization_reversal_point_of_sale' | 'visa_authorization_reversal_international_point_of_sale' | 'visa_authorization_address_verification_service' | 'visa_advanced_authorization' | 'visa_message_transmission' | 'visa_account_verification_domestic' | 'visa_account_verification_international' | 'visa_account_verification_canada' | 'visa_corporate_acceptance_fee' | 'visa_consumer_debit_acceptance_fee' | 'visa_business_debit_acceptance_fee' | 'visa_purchasing_acceptance_fee' | 'visa_purchase_domestic' | 'visa_purchase_international' | 'visa_credit_purchase_token' | 'visa_debit_purchase_token' | 'visa_clearing_transmission' | 'visa_direct_authorization' | 'visa_direct_transaction_domestic' | 'visa_service_commercial_credit' | 'visa_advertising_service_commercial_credit' | 'visa_community_growth_acceleration_program' | 'visa_processing_guarantee_commercial_credit' | 'pulse_switch_fee';
|
|
3861
|
+
/**
|
|
3862
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
3863
|
+
* amount.
|
|
3864
|
+
*/
|
|
3865
|
+
fixed_component: string | null;
|
|
3866
|
+
/**
|
|
3867
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
3868
|
+
* 0.015 for 1.5%).
|
|
3869
|
+
*/
|
|
3870
|
+
variable_rate: string | null;
|
|
3871
|
+
}
|
|
3260
3872
|
}
|
|
3261
3873
|
/**
|
|
3262
3874
|
* A Card Increment object. This field will be present in the JSON response if and
|
|
@@ -3335,6 +3947,10 @@ export declare namespace CardPayment {
|
|
|
3335
3947
|
* incremental authorization.
|
|
3336
3948
|
*/
|
|
3337
3949
|
real_time_decision_id: string | null;
|
|
3950
|
+
/**
|
|
3951
|
+
* The scheme fees associated with this card increment.
|
|
3952
|
+
*/
|
|
3953
|
+
scheme_fees: Array<CardIncrement.SchemeFee>;
|
|
3338
3954
|
/**
|
|
3339
3955
|
* A constant representing the object's type. For this resource it will always be
|
|
3340
3956
|
* `card_increment`.
|
|
@@ -3583,6 +4199,125 @@ export declare namespace CardPayment {
|
|
|
3583
4199
|
*/
|
|
3584
4200
|
transaction_id: string | null;
|
|
3585
4201
|
}
|
|
4202
|
+
interface SchemeFee {
|
|
4203
|
+
/**
|
|
4204
|
+
* The fee amount given as a string containing a decimal number.
|
|
4205
|
+
*/
|
|
4206
|
+
amount: string;
|
|
4207
|
+
/**
|
|
4208
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
4209
|
+
* created.
|
|
4210
|
+
*/
|
|
4211
|
+
created_at: string;
|
|
4212
|
+
/**
|
|
4213
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
4214
|
+
* reimbursement.
|
|
4215
|
+
*
|
|
4216
|
+
* - `USD` - US Dollar (USD)
|
|
4217
|
+
*/
|
|
4218
|
+
currency: 'USD';
|
|
4219
|
+
/**
|
|
4220
|
+
* The type of fee being assessed.
|
|
4221
|
+
*
|
|
4222
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
4223
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
4224
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
4225
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
4226
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
4227
|
+
* cross-border transactions presented and settled in different currencies.
|
|
4228
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
4229
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
4230
|
+
* transactions. Authorization is the process of approving or declining the
|
|
4231
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
4232
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
4233
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
4234
|
+
* authorization transactions. Authorization is the process of approving or
|
|
4235
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
4236
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
4237
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
4238
|
+
* authorization transactions. Authorization is the process of approving or
|
|
4239
|
+
* declining the transaction amount specified.
|
|
4240
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
4241
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
4242
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
4243
|
+
* complete or partial actions of a previous authorization request.
|
|
4244
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
4245
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
4246
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
4247
|
+
* message that undoes the complete or partial actions of a previous
|
|
4248
|
+
* authorization request.
|
|
4249
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
4250
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
4251
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
4252
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
4253
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
4254
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
4255
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
4256
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
4257
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
4258
|
+
* VisaNet Access Point.
|
|
4259
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
4260
|
+
* domestic Issuer for Account Number Verification.
|
|
4261
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
4262
|
+
* the international Issuer for Account Number Verification.
|
|
4263
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
4264
|
+
* US-Canada Issuer for Account Number Verification.
|
|
4265
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
4266
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
4267
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
4268
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
4269
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
4270
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
4271
|
+
* transaction is excluded from the sales volume calculation.
|
|
4272
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
4273
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
4274
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
4275
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
4276
|
+
* Debit and Prepaid card transactions.
|
|
4277
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
4278
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
4279
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
4280
|
+
* transactions.
|
|
4281
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
4282
|
+
* draft original for a purchase transaction.
|
|
4283
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
4284
|
+
* international sales draft original for a purchase transaction.
|
|
4285
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
4286
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
4287
|
+
* Apple Pay transactions.
|
|
4288
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
4289
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
4290
|
+
* transactions.
|
|
4291
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
4292
|
+
* financial draft - Issuer.
|
|
4293
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
4294
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
4295
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
4296
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
4297
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
4298
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
4299
|
+
* Credit cards.
|
|
4300
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
4301
|
+
* for Commercial Credit cards.
|
|
4302
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
4303
|
+
* Acceleration Program Fee.
|
|
4304
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
4305
|
+
* for Commercial Credit cards.
|
|
4306
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
4307
|
+
* for processing transactions on its network.
|
|
4308
|
+
*/
|
|
4309
|
+
fee_type: 'visa_international_service_assessment_single_currency' | 'visa_international_service_assessment_cross_currency' | 'visa_authorization_domestic_point_of_sale' | 'visa_authorization_international_point_of_sale' | 'visa_authorization_canada_point_of_sale' | 'visa_authorization_reversal_point_of_sale' | 'visa_authorization_reversal_international_point_of_sale' | 'visa_authorization_address_verification_service' | 'visa_advanced_authorization' | 'visa_message_transmission' | 'visa_account_verification_domestic' | 'visa_account_verification_international' | 'visa_account_verification_canada' | 'visa_corporate_acceptance_fee' | 'visa_consumer_debit_acceptance_fee' | 'visa_business_debit_acceptance_fee' | 'visa_purchasing_acceptance_fee' | 'visa_purchase_domestic' | 'visa_purchase_international' | 'visa_credit_purchase_token' | 'visa_debit_purchase_token' | 'visa_clearing_transmission' | 'visa_direct_authorization' | 'visa_direct_transaction_domestic' | 'visa_service_commercial_credit' | 'visa_advertising_service_commercial_credit' | 'visa_community_growth_acceleration_program' | 'visa_processing_guarantee_commercial_credit' | 'pulse_switch_fee';
|
|
4310
|
+
/**
|
|
4311
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
4312
|
+
* amount.
|
|
4313
|
+
*/
|
|
4314
|
+
fixed_component: string | null;
|
|
4315
|
+
/**
|
|
4316
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
4317
|
+
* 0.015 for 1.5%).
|
|
4318
|
+
*/
|
|
4319
|
+
variable_rate: string | null;
|
|
4320
|
+
}
|
|
3586
4321
|
}
|
|
3587
4322
|
/**
|
|
3588
4323
|
* A Card Refund object. This field will be present in the JSON response if and
|
|
@@ -3668,6 +4403,10 @@ export declare namespace CardPayment {
|
|
|
3668
4403
|
* fields.
|
|
3669
4404
|
*/
|
|
3670
4405
|
purchase_details: CardRefund.PurchaseDetails | null;
|
|
4406
|
+
/**
|
|
4407
|
+
* The scheme fees associated with this card refund.
|
|
4408
|
+
*/
|
|
4409
|
+
scheme_fees: Array<CardRefund.SchemeFee>;
|
|
3671
4410
|
/**
|
|
3672
4411
|
* The identifier of the Transaction associated with this Transaction.
|
|
3673
4412
|
*/
|
|
@@ -4147,6 +4886,125 @@ export declare namespace CardPayment {
|
|
|
4147
4886
|
}
|
|
4148
4887
|
}
|
|
4149
4888
|
}
|
|
4889
|
+
interface SchemeFee {
|
|
4890
|
+
/**
|
|
4891
|
+
* The fee amount given as a string containing a decimal number.
|
|
4892
|
+
*/
|
|
4893
|
+
amount: string;
|
|
4894
|
+
/**
|
|
4895
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
4896
|
+
* created.
|
|
4897
|
+
*/
|
|
4898
|
+
created_at: string;
|
|
4899
|
+
/**
|
|
4900
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
4901
|
+
* reimbursement.
|
|
4902
|
+
*
|
|
4903
|
+
* - `USD` - US Dollar (USD)
|
|
4904
|
+
*/
|
|
4905
|
+
currency: 'USD';
|
|
4906
|
+
/**
|
|
4907
|
+
* The type of fee being assessed.
|
|
4908
|
+
*
|
|
4909
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
4910
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
4911
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
4912
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
4913
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
4914
|
+
* cross-border transactions presented and settled in different currencies.
|
|
4915
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
4916
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
4917
|
+
* transactions. Authorization is the process of approving or declining the
|
|
4918
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
4919
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
4920
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
4921
|
+
* authorization transactions. Authorization is the process of approving or
|
|
4922
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
4923
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
4924
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
4925
|
+
* authorization transactions. Authorization is the process of approving or
|
|
4926
|
+
* declining the transaction amount specified.
|
|
4927
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
4928
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
4929
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
4930
|
+
* complete or partial actions of a previous authorization request.
|
|
4931
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
4932
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
4933
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
4934
|
+
* message that undoes the complete or partial actions of a previous
|
|
4935
|
+
* authorization request.
|
|
4936
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
4937
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
4938
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
4939
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
4940
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
4941
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
4942
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
4943
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
4944
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
4945
|
+
* VisaNet Access Point.
|
|
4946
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
4947
|
+
* domestic Issuer for Account Number Verification.
|
|
4948
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
4949
|
+
* the international Issuer for Account Number Verification.
|
|
4950
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
4951
|
+
* US-Canada Issuer for Account Number Verification.
|
|
4952
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
4953
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
4954
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
4955
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
4956
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
4957
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
4958
|
+
* transaction is excluded from the sales volume calculation.
|
|
4959
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
4960
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
4961
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
4962
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
4963
|
+
* Debit and Prepaid card transactions.
|
|
4964
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
4965
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
4966
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
4967
|
+
* transactions.
|
|
4968
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
4969
|
+
* draft original for a purchase transaction.
|
|
4970
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
4971
|
+
* international sales draft original for a purchase transaction.
|
|
4972
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
4973
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
4974
|
+
* Apple Pay transactions.
|
|
4975
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
4976
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
4977
|
+
* transactions.
|
|
4978
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
4979
|
+
* financial draft - Issuer.
|
|
4980
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
4981
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
4982
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
4983
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
4984
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
4985
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
4986
|
+
* Credit cards.
|
|
4987
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
4988
|
+
* for Commercial Credit cards.
|
|
4989
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
4990
|
+
* Acceleration Program Fee.
|
|
4991
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
4992
|
+
* for Commercial Credit cards.
|
|
4993
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
4994
|
+
* for processing transactions on its network.
|
|
4995
|
+
*/
|
|
4996
|
+
fee_type: 'visa_international_service_assessment_single_currency' | 'visa_international_service_assessment_cross_currency' | 'visa_authorization_domestic_point_of_sale' | 'visa_authorization_international_point_of_sale' | 'visa_authorization_canada_point_of_sale' | 'visa_authorization_reversal_point_of_sale' | 'visa_authorization_reversal_international_point_of_sale' | 'visa_authorization_address_verification_service' | 'visa_advanced_authorization' | 'visa_message_transmission' | 'visa_account_verification_domestic' | 'visa_account_verification_international' | 'visa_account_verification_canada' | 'visa_corporate_acceptance_fee' | 'visa_consumer_debit_acceptance_fee' | 'visa_business_debit_acceptance_fee' | 'visa_purchasing_acceptance_fee' | 'visa_purchase_domestic' | 'visa_purchase_international' | 'visa_credit_purchase_token' | 'visa_debit_purchase_token' | 'visa_clearing_transmission' | 'visa_direct_authorization' | 'visa_direct_transaction_domestic' | 'visa_service_commercial_credit' | 'visa_advertising_service_commercial_credit' | 'visa_community_growth_acceleration_program' | 'visa_processing_guarantee_commercial_credit' | 'pulse_switch_fee';
|
|
4997
|
+
/**
|
|
4998
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
4999
|
+
* amount.
|
|
5000
|
+
*/
|
|
5001
|
+
fixed_component: string | null;
|
|
5002
|
+
/**
|
|
5003
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
5004
|
+
* 0.015 for 1.5%).
|
|
5005
|
+
*/
|
|
5006
|
+
variable_rate: string | null;
|
|
5007
|
+
}
|
|
4150
5008
|
}
|
|
4151
5009
|
/**
|
|
4152
5010
|
* A Card Reversal object. This field will be present in the JSON response if and
|
|
@@ -4242,6 +5100,10 @@ export declare namespace CardPayment {
|
|
|
4242
5100
|
* - `partial_reversal` - The Card Reversal was a partial reversal, for any reason.
|
|
4243
5101
|
*/
|
|
4244
5102
|
reversal_reason: 'reversed_by_customer' | 'reversed_by_network_or_acquirer' | 'reversed_by_point_of_sale' | 'partial_reversal' | null;
|
|
5103
|
+
/**
|
|
5104
|
+
* The scheme fees associated with this card reversal.
|
|
5105
|
+
*/
|
|
5106
|
+
scheme_fees: Array<CardReversal.SchemeFee>;
|
|
4245
5107
|
/**
|
|
4246
5108
|
* The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
|
4247
5109
|
* is transacting with.
|
|
@@ -4291,6 +5153,125 @@ export declare namespace CardPayment {
|
|
|
4291
5153
|
*/
|
|
4292
5154
|
transaction_id: string | null;
|
|
4293
5155
|
}
|
|
5156
|
+
interface SchemeFee {
|
|
5157
|
+
/**
|
|
5158
|
+
* The fee amount given as a string containing a decimal number.
|
|
5159
|
+
*/
|
|
5160
|
+
amount: string;
|
|
5161
|
+
/**
|
|
5162
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
5163
|
+
* created.
|
|
5164
|
+
*/
|
|
5165
|
+
created_at: string;
|
|
5166
|
+
/**
|
|
5167
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
5168
|
+
* reimbursement.
|
|
5169
|
+
*
|
|
5170
|
+
* - `USD` - US Dollar (USD)
|
|
5171
|
+
*/
|
|
5172
|
+
currency: 'USD';
|
|
5173
|
+
/**
|
|
5174
|
+
* The type of fee being assessed.
|
|
5175
|
+
*
|
|
5176
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
5177
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
5178
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
5179
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
5180
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
5181
|
+
* cross-border transactions presented and settled in different currencies.
|
|
5182
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
5183
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
5184
|
+
* transactions. Authorization is the process of approving or declining the
|
|
5185
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
5186
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
5187
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
5188
|
+
* authorization transactions. Authorization is the process of approving or
|
|
5189
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
5190
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
5191
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
5192
|
+
* authorization transactions. Authorization is the process of approving or
|
|
5193
|
+
* declining the transaction amount specified.
|
|
5194
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
5195
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
5196
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
5197
|
+
* complete or partial actions of a previous authorization request.
|
|
5198
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
5199
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
5200
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
5201
|
+
* message that undoes the complete or partial actions of a previous
|
|
5202
|
+
* authorization request.
|
|
5203
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
5204
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
5205
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
5206
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
5207
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
5208
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
5209
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
5210
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
5211
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
5212
|
+
* VisaNet Access Point.
|
|
5213
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
5214
|
+
* domestic Issuer for Account Number Verification.
|
|
5215
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
5216
|
+
* the international Issuer for Account Number Verification.
|
|
5217
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
5218
|
+
* US-Canada Issuer for Account Number Verification.
|
|
5219
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
5220
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
5221
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
5222
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
5223
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
5224
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
5225
|
+
* transaction is excluded from the sales volume calculation.
|
|
5226
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
5227
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
5228
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
5229
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
5230
|
+
* Debit and Prepaid card transactions.
|
|
5231
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
5232
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
5233
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
5234
|
+
* transactions.
|
|
5235
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
5236
|
+
* draft original for a purchase transaction.
|
|
5237
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
5238
|
+
* international sales draft original for a purchase transaction.
|
|
5239
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
5240
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
5241
|
+
* Apple Pay transactions.
|
|
5242
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
5243
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
5244
|
+
* transactions.
|
|
5245
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
5246
|
+
* financial draft - Issuer.
|
|
5247
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
5248
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
5249
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
5250
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
5251
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
5252
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
5253
|
+
* Credit cards.
|
|
5254
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
5255
|
+
* for Commercial Credit cards.
|
|
5256
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
5257
|
+
* Acceleration Program Fee.
|
|
5258
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
5259
|
+
* for Commercial Credit cards.
|
|
5260
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
5261
|
+
* for processing transactions on its network.
|
|
5262
|
+
*/
|
|
5263
|
+
fee_type: 'visa_international_service_assessment_single_currency' | 'visa_international_service_assessment_cross_currency' | 'visa_authorization_domestic_point_of_sale' | 'visa_authorization_international_point_of_sale' | 'visa_authorization_canada_point_of_sale' | 'visa_authorization_reversal_point_of_sale' | 'visa_authorization_reversal_international_point_of_sale' | 'visa_authorization_address_verification_service' | 'visa_advanced_authorization' | 'visa_message_transmission' | 'visa_account_verification_domestic' | 'visa_account_verification_international' | 'visa_account_verification_canada' | 'visa_corporate_acceptance_fee' | 'visa_consumer_debit_acceptance_fee' | 'visa_business_debit_acceptance_fee' | 'visa_purchasing_acceptance_fee' | 'visa_purchase_domestic' | 'visa_purchase_international' | 'visa_credit_purchase_token' | 'visa_debit_purchase_token' | 'visa_clearing_transmission' | 'visa_direct_authorization' | 'visa_direct_transaction_domestic' | 'visa_service_commercial_credit' | 'visa_advertising_service_commercial_credit' | 'visa_community_growth_acceleration_program' | 'visa_processing_guarantee_commercial_credit' | 'pulse_switch_fee';
|
|
5264
|
+
/**
|
|
5265
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
5266
|
+
* amount.
|
|
5267
|
+
*/
|
|
5268
|
+
fixed_component: string | null;
|
|
5269
|
+
/**
|
|
5270
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
5271
|
+
* 0.015 for 1.5%).
|
|
5272
|
+
*/
|
|
5273
|
+
variable_rate: string | null;
|
|
5274
|
+
}
|
|
4294
5275
|
}
|
|
4295
5276
|
/**
|
|
4296
5277
|
* A Card Settlement object. This field will be present in the JSON response if and
|
|
@@ -4392,6 +5373,10 @@ export declare namespace CardPayment {
|
|
|
4392
5373
|
* fields.
|
|
4393
5374
|
*/
|
|
4394
5375
|
purchase_details: CardSettlement.PurchaseDetails | null;
|
|
5376
|
+
/**
|
|
5377
|
+
* The scheme fees associated with this card settlement.
|
|
5378
|
+
*/
|
|
5379
|
+
scheme_fees: Array<CardSettlement.SchemeFee>;
|
|
4395
5380
|
/**
|
|
4396
5381
|
* Surcharge amount details, if applicable. The amount is positive if the surcharge
|
|
4397
5382
|
* is added to the overall transaction amount (surcharge), and negative if the
|
|
@@ -4877,6 +5862,125 @@ export declare namespace CardPayment {
|
|
|
4877
5862
|
}
|
|
4878
5863
|
}
|
|
4879
5864
|
}
|
|
5865
|
+
interface SchemeFee {
|
|
5866
|
+
/**
|
|
5867
|
+
* The fee amount given as a string containing a decimal number.
|
|
5868
|
+
*/
|
|
5869
|
+
amount: string;
|
|
5870
|
+
/**
|
|
5871
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
5872
|
+
* created.
|
|
5873
|
+
*/
|
|
5874
|
+
created_at: string;
|
|
5875
|
+
/**
|
|
5876
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
5877
|
+
* reimbursement.
|
|
5878
|
+
*
|
|
5879
|
+
* - `USD` - US Dollar (USD)
|
|
5880
|
+
*/
|
|
5881
|
+
currency: 'USD';
|
|
5882
|
+
/**
|
|
5883
|
+
* The type of fee being assessed.
|
|
5884
|
+
*
|
|
5885
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
5886
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
5887
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
5888
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
5889
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
5890
|
+
* cross-border transactions presented and settled in different currencies.
|
|
5891
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
5892
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
5893
|
+
* transactions. Authorization is the process of approving or declining the
|
|
5894
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
5895
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
5896
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
5897
|
+
* authorization transactions. Authorization is the process of approving or
|
|
5898
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
5899
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
5900
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
5901
|
+
* authorization transactions. Authorization is the process of approving or
|
|
5902
|
+
* declining the transaction amount specified.
|
|
5903
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
5904
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
5905
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
5906
|
+
* complete or partial actions of a previous authorization request.
|
|
5907
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
5908
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
5909
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
5910
|
+
* message that undoes the complete or partial actions of a previous
|
|
5911
|
+
* authorization request.
|
|
5912
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
5913
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
5914
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
5915
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
5916
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
5917
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
5918
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
5919
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
5920
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
5921
|
+
* VisaNet Access Point.
|
|
5922
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
5923
|
+
* domestic Issuer for Account Number Verification.
|
|
5924
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
5925
|
+
* the international Issuer for Account Number Verification.
|
|
5926
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
5927
|
+
* US-Canada Issuer for Account Number Verification.
|
|
5928
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
5929
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
5930
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
5931
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
5932
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
5933
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
5934
|
+
* transaction is excluded from the sales volume calculation.
|
|
5935
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
5936
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
5937
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
5938
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
5939
|
+
* Debit and Prepaid card transactions.
|
|
5940
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
5941
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
5942
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
5943
|
+
* transactions.
|
|
5944
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
5945
|
+
* draft original for a purchase transaction.
|
|
5946
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
5947
|
+
* international sales draft original for a purchase transaction.
|
|
5948
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
5949
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
5950
|
+
* Apple Pay transactions.
|
|
5951
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
5952
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
5953
|
+
* transactions.
|
|
5954
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
5955
|
+
* financial draft - Issuer.
|
|
5956
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
5957
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
5958
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
5959
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
5960
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
5961
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
5962
|
+
* Credit cards.
|
|
5963
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
5964
|
+
* for Commercial Credit cards.
|
|
5965
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
5966
|
+
* Acceleration Program Fee.
|
|
5967
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
5968
|
+
* for Commercial Credit cards.
|
|
5969
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
5970
|
+
* for processing transactions on its network.
|
|
5971
|
+
*/
|
|
5972
|
+
fee_type: 'visa_international_service_assessment_single_currency' | 'visa_international_service_assessment_cross_currency' | 'visa_authorization_domestic_point_of_sale' | 'visa_authorization_international_point_of_sale' | 'visa_authorization_canada_point_of_sale' | 'visa_authorization_reversal_point_of_sale' | 'visa_authorization_reversal_international_point_of_sale' | 'visa_authorization_address_verification_service' | 'visa_advanced_authorization' | 'visa_message_transmission' | 'visa_account_verification_domestic' | 'visa_account_verification_international' | 'visa_account_verification_canada' | 'visa_corporate_acceptance_fee' | 'visa_consumer_debit_acceptance_fee' | 'visa_business_debit_acceptance_fee' | 'visa_purchasing_acceptance_fee' | 'visa_purchase_domestic' | 'visa_purchase_international' | 'visa_credit_purchase_token' | 'visa_debit_purchase_token' | 'visa_clearing_transmission' | 'visa_direct_authorization' | 'visa_direct_transaction_domestic' | 'visa_service_commercial_credit' | 'visa_advertising_service_commercial_credit' | 'visa_community_growth_acceleration_program' | 'visa_processing_guarantee_commercial_credit' | 'pulse_switch_fee';
|
|
5973
|
+
/**
|
|
5974
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
5975
|
+
* amount.
|
|
5976
|
+
*/
|
|
5977
|
+
fixed_component: string | null;
|
|
5978
|
+
/**
|
|
5979
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
5980
|
+
* 0.015 for 1.5%).
|
|
5981
|
+
*/
|
|
5982
|
+
variable_rate: string | null;
|
|
5983
|
+
}
|
|
4880
5984
|
/**
|
|
4881
5985
|
* Surcharge amount details, if applicable. The amount is positive if the surcharge
|
|
4882
5986
|
* is added to the overall transaction amount (surcharge), and negative if the
|
|
@@ -4992,6 +6096,10 @@ export declare namespace CardPayment {
|
|
|
4992
6096
|
* transaction.
|
|
4993
6097
|
*/
|
|
4994
6098
|
real_time_decision_id: string | null;
|
|
6099
|
+
/**
|
|
6100
|
+
* The scheme fees associated with this card validation.
|
|
6101
|
+
*/
|
|
6102
|
+
scheme_fees: Array<CardValidation.SchemeFee>;
|
|
4995
6103
|
/**
|
|
4996
6104
|
* The terminal identifier (commonly abbreviated as TID) of the terminal the card
|
|
4997
6105
|
* is transacting with.
|
|
@@ -5379,6 +6487,125 @@ export declare namespace CardPayment {
|
|
|
5379
6487
|
*/
|
|
5380
6488
|
transaction_id: string | null;
|
|
5381
6489
|
}
|
|
6490
|
+
interface SchemeFee {
|
|
6491
|
+
/**
|
|
6492
|
+
* The fee amount given as a string containing a decimal number.
|
|
6493
|
+
*/
|
|
6494
|
+
amount: string;
|
|
6495
|
+
/**
|
|
6496
|
+
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
6497
|
+
* created.
|
|
6498
|
+
*/
|
|
6499
|
+
created_at: string;
|
|
6500
|
+
/**
|
|
6501
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
6502
|
+
* reimbursement.
|
|
6503
|
+
*
|
|
6504
|
+
* - `USD` - US Dollar (USD)
|
|
6505
|
+
*/
|
|
6506
|
+
currency: 'USD';
|
|
6507
|
+
/**
|
|
6508
|
+
* The type of fee being assessed.
|
|
6509
|
+
*
|
|
6510
|
+
* - `visa_international_service_assessment_single_currency` - International
|
|
6511
|
+
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
6512
|
+
* for cross-border transactions presented and settled in the same currency.
|
|
6513
|
+
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
6514
|
+
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
6515
|
+
* cross-border transactions presented and settled in different currencies.
|
|
6516
|
+
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
6517
|
+
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
6518
|
+
* transactions. Authorization is the process of approving or declining the
|
|
6519
|
+
* transaction amount specified. The fee is assessed to the Issuer.
|
|
6520
|
+
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
6521
|
+
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
6522
|
+
* authorization transactions. Authorization is the process of approving or
|
|
6523
|
+
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
6524
|
+
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
6525
|
+
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
6526
|
+
* authorization transactions. Authorization is the process of approving or
|
|
6527
|
+
* declining the transaction amount specified.
|
|
6528
|
+
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
6529
|
+
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
6530
|
+
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
6531
|
+
* complete or partial actions of a previous authorization request.
|
|
6532
|
+
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
6533
|
+
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
6534
|
+
* International reversal transactions. Authorization reversal represents a VSS
|
|
6535
|
+
* message that undoes the complete or partial actions of a previous
|
|
6536
|
+
* authorization request.
|
|
6537
|
+
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
6538
|
+
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
6539
|
+
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
6540
|
+
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
6541
|
+
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
6542
|
+
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
6543
|
+
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
6544
|
+
* based on total actual monthly processing (Visa transactions only) through a
|
|
6545
|
+
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
6546
|
+
* VisaNet Access Point.
|
|
6547
|
+
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
6548
|
+
* domestic Issuer for Account Number Verification.
|
|
6549
|
+
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
6550
|
+
* the international Issuer for Account Number Verification.
|
|
6551
|
+
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
6552
|
+
* US-Canada Issuer for Account Number Verification.
|
|
6553
|
+
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
6554
|
+
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
6555
|
+
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
6556
|
+
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
6557
|
+
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
6558
|
+
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
6559
|
+
* transaction is excluded from the sales volume calculation.
|
|
6560
|
+
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
6561
|
+
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
6562
|
+
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
6563
|
+
* portion is included in the sales volume calculation with the exception of a
|
|
6564
|
+
* Debit and Prepaid card transactions.
|
|
6565
|
+
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
6566
|
+
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
6567
|
+
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
6568
|
+
* transactions.
|
|
6569
|
+
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
6570
|
+
* draft original for a purchase transaction.
|
|
6571
|
+
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
6572
|
+
* international sales draft original for a purchase transaction.
|
|
6573
|
+
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
6574
|
+
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
6575
|
+
* Apple Pay transactions.
|
|
6576
|
+
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
6577
|
+
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
6578
|
+
* transactions.
|
|
6579
|
+
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
6580
|
+
* financial draft - Issuer.
|
|
6581
|
+
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
6582
|
+
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
6583
|
+
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
6584
|
+
* OCTs for all business application identifiers (BAIs) other than money
|
|
6585
|
+
* transfer-bank initiated (BI). BASE II transactions.
|
|
6586
|
+
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
6587
|
+
* Credit cards.
|
|
6588
|
+
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
6589
|
+
* for Commercial Credit cards.
|
|
6590
|
+
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
6591
|
+
* Acceleration Program Fee.
|
|
6592
|
+
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
6593
|
+
* for Commercial Credit cards.
|
|
6594
|
+
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
6595
|
+
* for processing transactions on its network.
|
|
6596
|
+
*/
|
|
6597
|
+
fee_type: 'visa_international_service_assessment_single_currency' | 'visa_international_service_assessment_cross_currency' | 'visa_authorization_domestic_point_of_sale' | 'visa_authorization_international_point_of_sale' | 'visa_authorization_canada_point_of_sale' | 'visa_authorization_reversal_point_of_sale' | 'visa_authorization_reversal_international_point_of_sale' | 'visa_authorization_address_verification_service' | 'visa_advanced_authorization' | 'visa_message_transmission' | 'visa_account_verification_domestic' | 'visa_account_verification_international' | 'visa_account_verification_canada' | 'visa_corporate_acceptance_fee' | 'visa_consumer_debit_acceptance_fee' | 'visa_business_debit_acceptance_fee' | 'visa_purchasing_acceptance_fee' | 'visa_purchase_domestic' | 'visa_purchase_international' | 'visa_credit_purchase_token' | 'visa_debit_purchase_token' | 'visa_clearing_transmission' | 'visa_direct_authorization' | 'visa_direct_transaction_domestic' | 'visa_service_commercial_credit' | 'visa_advertising_service_commercial_credit' | 'visa_community_growth_acceleration_program' | 'visa_processing_guarantee_commercial_credit' | 'pulse_switch_fee';
|
|
6598
|
+
/**
|
|
6599
|
+
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
6600
|
+
* amount.
|
|
6601
|
+
*/
|
|
6602
|
+
fixed_component: string | null;
|
|
6603
|
+
/**
|
|
6604
|
+
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
6605
|
+
* 0.015 for 1.5%).
|
|
6606
|
+
*/
|
|
6607
|
+
variable_rate: string | null;
|
|
6608
|
+
}
|
|
5382
6609
|
/**
|
|
5383
6610
|
* Fields related to verification of cardholder-provided values.
|
|
5384
6611
|
*/
|
|
@@ -5478,125 +6705,6 @@ export declare namespace CardPayment {
|
|
|
5478
6705
|
interface Other {
|
|
5479
6706
|
}
|
|
5480
6707
|
}
|
|
5481
|
-
interface SchemeFee {
|
|
5482
|
-
/**
|
|
5483
|
-
* The fee amount given as a string containing a decimal number.
|
|
5484
|
-
*/
|
|
5485
|
-
amount: string;
|
|
5486
|
-
/**
|
|
5487
|
-
* The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
|
|
5488
|
-
* created.
|
|
5489
|
-
*/
|
|
5490
|
-
created_at: string;
|
|
5491
|
-
/**
|
|
5492
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
|
|
5493
|
-
* reimbursement.
|
|
5494
|
-
*
|
|
5495
|
-
* - `USD` - US Dollar (USD)
|
|
5496
|
-
*/
|
|
5497
|
-
currency: 'USD';
|
|
5498
|
-
/**
|
|
5499
|
-
* The type of fee being assessed.
|
|
5500
|
-
*
|
|
5501
|
-
* - `visa_international_service_assessment_single_currency` - International
|
|
5502
|
-
* Service Assessment (ISA) single-currency is a fee assessed by the card network
|
|
5503
|
-
* for cross-border transactions presented and settled in the same currency.
|
|
5504
|
-
* - `visa_international_service_assessment_cross_currency` - International Service
|
|
5505
|
-
* Assessment (ISA) cross-currency is a fee assessed by the card network for
|
|
5506
|
-
* cross-border transactions presented and settled in different currencies.
|
|
5507
|
-
* - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
|
|
5508
|
-
* Settlement System processing for POS (Point-Of-Sale) authorization
|
|
5509
|
-
* transactions. Authorization is the process of approving or declining the
|
|
5510
|
-
* transaction amount specified. The fee is assessed to the Issuer.
|
|
5511
|
-
* - `visa_authorization_international_point_of_sale` - Activity and charges for
|
|
5512
|
-
* Visa Settlement System processing for POS (Point-Of-Sale) International
|
|
5513
|
-
* authorization transactions. Authorization is the process of approving or
|
|
5514
|
-
* declining the transaction amount specified. The fee is assessed to the Issuer.
|
|
5515
|
-
* - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
|
|
5516
|
-
* Settlement System processing for Canada Region POS (Point-of-Sale)
|
|
5517
|
-
* authorization transactions. Authorization is the process of approving or
|
|
5518
|
-
* declining the transaction amount specified.
|
|
5519
|
-
* - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
|
|
5520
|
-
* Settlement System authorization processing of POS (Point-Of-Sale) reversal
|
|
5521
|
-
* transactions. Authorization reversal represents a VSS message that undoes the
|
|
5522
|
-
* complete or partial actions of a previous authorization request.
|
|
5523
|
-
* - `visa_authorization_reversal_international_point_of_sale` - Activity only for
|
|
5524
|
-
* Visa Settlement System authorization processing of POS (Point-Of-Sale)
|
|
5525
|
-
* International reversal transactions. Authorization reversal represents a VSS
|
|
5526
|
-
* message that undoes the complete or partial actions of a previous
|
|
5527
|
-
* authorization request.
|
|
5528
|
-
* - `visa_authorization_address_verification_service` - A per Address Verification
|
|
5529
|
-
* Service (AVS) result fee. Applies to all usable AVS result codes.
|
|
5530
|
-
* - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
|
|
5531
|
-
* tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
|
|
5532
|
-
* in real-time. Activity related to Purchase (includes Signature Authenticated
|
|
5533
|
-
* Visa and PIN Authenticated Visa Debit (PAVD) transactions).
|
|
5534
|
-
* - `visa_message_transmission` - Issuer Transactions Visa represents a charge
|
|
5535
|
-
* based on total actual monthly processing (Visa transactions only) through a
|
|
5536
|
-
* VisaNet Access Point (VAP). Charges are assessed to the processor for each
|
|
5537
|
-
* VisaNet Access Point.
|
|
5538
|
-
* - `visa_account_verification_domestic` - Activity, per inquiry, related to the
|
|
5539
|
-
* domestic Issuer for Account Number Verification.
|
|
5540
|
-
* - `visa_account_verification_international` - Activity, per inquiry, related to
|
|
5541
|
-
* the international Issuer for Account Number Verification.
|
|
5542
|
-
* - `visa_account_verification_canada` - Activity, per inquiry, related to the
|
|
5543
|
-
* US-Canada Issuer for Account Number Verification.
|
|
5544
|
-
* - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
|
|
5545
|
-
* issuers and is based on the monthly sales volume on Commercial and Government
|
|
5546
|
-
* Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
|
|
5547
|
-
* - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
|
|
5548
|
-
* charged to issuers and is based on the monthly sales volume of Consumer Debit
|
|
5549
|
-
* or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
|
|
5550
|
-
* transaction is excluded from the sales volume calculation.
|
|
5551
|
-
* - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
|
|
5552
|
-
* to issuers and is based on the monthly sales volume on Business Debit,
|
|
5553
|
-
* Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
|
|
5554
|
-
* portion is included in the sales volume calculation with the exception of a
|
|
5555
|
-
* Debit and Prepaid card transactions.
|
|
5556
|
-
* - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
|
|
5557
|
-
* charged to issuers and is based on the monthly sales volume on Commercial and
|
|
5558
|
-
* Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
|
|
5559
|
-
* transactions.
|
|
5560
|
-
* - `visa_purchase_domestic` - Activity and fees for the processing of a sales
|
|
5561
|
-
* draft original for a purchase transaction.
|
|
5562
|
-
* - `visa_purchase_international` - Activity and fees for the processing of an
|
|
5563
|
-
* international sales draft original for a purchase transaction.
|
|
5564
|
-
* - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
|
|
5565
|
-
* Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
|
|
5566
|
-
* Apple Pay transactions.
|
|
5567
|
-
* - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
|
|
5568
|
-
* Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
|
|
5569
|
-
* transactions.
|
|
5570
|
-
* - `visa_clearing_transmission` - A per transaction fee assessed for Base II
|
|
5571
|
-
* financial draft - Issuer.
|
|
5572
|
-
* - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
|
|
5573
|
-
* Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
|
|
5574
|
-
* - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
|
|
5575
|
-
* OCTs for all business application identifiers (BAIs) other than money
|
|
5576
|
-
* transfer-bank initiated (BI). BASE II transactions.
|
|
5577
|
-
* - `visa_service_commercial_credit` - Issuer card service fee for Commercial
|
|
5578
|
-
* Credit cards.
|
|
5579
|
-
* - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
|
|
5580
|
-
* for Commercial Credit cards.
|
|
5581
|
-
* - `visa_community_growth_acceleration_program` - Issuer Community Growth
|
|
5582
|
-
* Acceleration Program Fee.
|
|
5583
|
-
* - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
|
|
5584
|
-
* for Commercial Credit cards.
|
|
5585
|
-
* - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
|
|
5586
|
-
* for processing transactions on its network.
|
|
5587
|
-
*/
|
|
5588
|
-
fee_type: 'visa_international_service_assessment_single_currency' | 'visa_international_service_assessment_cross_currency' | 'visa_authorization_domestic_point_of_sale' | 'visa_authorization_international_point_of_sale' | 'visa_authorization_canada_point_of_sale' | 'visa_authorization_reversal_point_of_sale' | 'visa_authorization_reversal_international_point_of_sale' | 'visa_authorization_address_verification_service' | 'visa_advanced_authorization' | 'visa_message_transmission' | 'visa_account_verification_domestic' | 'visa_account_verification_international' | 'visa_account_verification_canada' | 'visa_corporate_acceptance_fee' | 'visa_consumer_debit_acceptance_fee' | 'visa_business_debit_acceptance_fee' | 'visa_purchasing_acceptance_fee' | 'visa_purchase_domestic' | 'visa_purchase_international' | 'visa_credit_purchase_token' | 'visa_debit_purchase_token' | 'visa_clearing_transmission' | 'visa_direct_authorization' | 'visa_direct_transaction_domestic' | 'visa_service_commercial_credit' | 'visa_advertising_service_commercial_credit' | 'visa_community_growth_acceleration_program' | 'visa_processing_guarantee_commercial_credit' | 'pulse_switch_fee';
|
|
5589
|
-
/**
|
|
5590
|
-
* The fixed component of the fee, if applicable, given in major units of the fee
|
|
5591
|
-
* amount.
|
|
5592
|
-
*/
|
|
5593
|
-
fixed_component: string | null;
|
|
5594
|
-
/**
|
|
5595
|
-
* The variable rate component of the fee, if applicable, given as a decimal (e.g.,
|
|
5596
|
-
* 0.015 for 1.5%).
|
|
5597
|
-
*/
|
|
5598
|
-
variable_rate: string | null;
|
|
5599
|
-
}
|
|
5600
6708
|
/**
|
|
5601
6709
|
* The summarized state of this card payment.
|
|
5602
6710
|
*/
|