You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The combination of a language code and a country code to specify the language to be used in the payment.
145
+
* The language for the payment. The value combines the two-letter [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) language code with the [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes) country code. For example, **nl-NL**. When using Drop-in/Components, the specified language appears if your front-end global configuration does not set the `locale`.
* The combination of a language code and a country code to specify the language to be used in the payment.
125
+
* The language for the payment. The value combines the two-letter [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) language code with the [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes) country code. For example, **nl-NL**. When using Drop-in/Components, the specified language appears if your front-end global configuration does not set the `locale`.
* The combination of a language code and a country code to specify the language to be used in the payment.
118
+
* The language for the payment. The value combines the two-letter [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes) language code with the [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_3166_country_codes) country code. For example, **nl-NL**. When using Drop-in/Components, the specified language appears if your front-end global configuration does not set the `locale`.
Copy file name to clipboardExpand all lines: src/typings/payment/responseAdditionalDataCard.ts
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,10 @@
9
9
10
10
11
11
exportclassResponseAdditionalDataCard{
12
+
/**
13
+
* This is an ALT ID (alternate ID) mapped to the Card PAN. > Returned only in case of Ecommerce Card Payment in India
14
+
*/
15
+
"cardAltID"?: string;
12
16
/**
13
17
* The first six digits of the card number. This is the [Bank Identification Number (BIN)](https://docs.adyen.com/get-started-with-adyen/payment-glossary#bank-identification-number-bin) for card numbers with a six-digit BIN. Example: 521234
14
18
*/
@@ -51,6 +55,12 @@ export class ResponseAdditionalDataCard {
* The risk level of the transaction as classified by the [machine learning](https://docs.adyen.com/risk-management/configure-your-risk-profile/machine-learning-rules/) fraud risk rule. The risk level indicates the likelihood that a transaction will result in a fraudulent dispute. The possible return values are: * veryLow * low * medium * high * veryHigh
105
+
* The risk level of the transaction as classified by the [machine learning](https://docs.adyen.com/risk-management/configure-your-risk-profile/machine-learning-rules/) fraud risk rule. The risk level indicates the likelihood that a transaction will result in a fraudulent dispute. Possible values: * veryLow * low * medium * high * veryHigh
@@ -142,6 +142,10 @@ export class ResponseAdditionalDataCommon {
142
142
*/
143
143
"merchantReference"?: string;
144
144
/**
145
+
* Indicates the processing flow. Possible values: * **sale**: You do not need to separately capture the funds, because capture happens automatically as part of the transaction. * **auth**: If you have not [configured automatic capture for the transaction](https://docs.adyen.com/online-payments/capture#types-of-capture), you must manually capture the funds.
146
+
*/
147
+
"networkProcessingMode"?: string;
148
+
/**
145
149
* Returned in the response if you are not tokenizing with Adyen and are using the Merchant-initiated transactions (MIT) framework from Mastercard or Visa. This contains either the Mastercard Trace ID or the Visa Transaction ID.
146
150
*/
147
151
"networkTxReference"?: string;
@@ -471,6 +475,12 @@ export class ResponseAdditionalDataCommon {
471
475
"type": "string",
472
476
"format": ""
473
477
},
478
+
{
479
+
"name": "networkProcessingMode",
480
+
"baseName": "networkProcessingMode",
481
+
"type": "string",
482
+
"format": ""
483
+
},
474
484
{
475
485
"name": "networkTxReference",
476
486
"baseName": "networkTxReference",
@@ -662,8 +672,9 @@ export class ResponseAdditionalDataCommon {
0 commit comments