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
Copy file name to clipboardExpand all lines: src/typings/binLookup/costEstimateRequest.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ import { Recurring } from "./recurring";
15
15
16
16
exportclassCostEstimateRequest{
17
17
"amount": Amount;
18
-
"assumptions"?: CostEstimateAssumptions;
18
+
"assumptions"?: CostEstimateAssumptions|null;
19
19
/**
20
20
* The card number (4-19 characters) for PCI compliant use cases. Do not use any separators. > Either the `cardNumber` or `encryptedCardNumber` field must be provided in a payment request.
21
21
*/
@@ -28,8 +28,8 @@ export class CostEstimateRequest {
28
28
* The merchant account identifier you want to process the (transaction) request with.
29
29
*/
30
30
"merchantAccount": string;
31
-
"merchantDetails"?: MerchantDetails;
32
-
"recurring"?: Recurring;
31
+
"merchantDetails"?: MerchantDetails|null;
32
+
"recurring"?: Recurring|null;
33
33
/**
34
34
* The `recurringDetailReference` you want to use for this cost estimate. The value `LATEST` can be used to select the most recently stored recurring detail.
35
35
*/
@@ -57,7 +57,7 @@ export class CostEstimateRequest {
57
57
{
58
58
"name": "assumptions",
59
59
"baseName": "assumptions",
60
-
"type": "CostEstimateAssumptions",
60
+
"type": "CostEstimateAssumptions | null",
61
61
"format": ""
62
62
},
63
63
{
@@ -81,13 +81,13 @@ export class CostEstimateRequest {
Copy file name to clipboardExpand all lines: src/typings/checkout/additionalDataSubMerchant.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ export class AdditionalDataSubMerchant {
34
34
*/
35
35
"subMerchant_subSeller_subSellerNr_mcc"?: string;
36
36
/**
37
-
* Required for transactions performed by registered payment facilitators. The name of the sub-merchant. Based on scheme specifications, this value will overwrite the shopper statement that will appear in the card statement. * Format: Alphanumeric * Maximum length: 22 characters
37
+
* Required for transactions performed by registered payment facilitators. The name of the sub-merchant. Based on scheme specifications, this value will overwrite the shopper statement that will appear in the card statement. Exception: for acquirers in Brazil, this value does not overwrite the shopper statement. * Format: Alphanumeric * Maximum length: 22 characters
Copy file name to clipboardExpand all lines: src/typings/checkout/airline.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ import { TravelAgency } from "./travelAgency";
15
15
16
16
17
17
exportclassAirline{
18
-
"agency"?: Agency;
18
+
"agency"?: Agency|null;
19
19
/**
20
20
* The amount charged for boarding the plane, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Encoding: Numeric * minLength: 1 character * maxLength: 11 characters
0 commit comments