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/recurring.ts
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@
10
10
11
11
exportclassRecurring{
12
12
/**
13
-
* The type of recurring contract to be used. Possible values: * `ONECLICK` – Payment details can be used to initiate a one-click payment, where the shopper enters the [card security code (CVC/CVV)](https://docs.adyen.com/payments-fundamentals/payment-glossary#card-security-code-cvc-cvv-cid). * `RECURRING` – Payment details can be used without the card security code to initiate [card-not-present transactions](https://docs.adyen.com/payments-fundamentals/payment-glossary#card-not-present-cnp). * `ONECLICK,RECURRING` – Payment details can be used regardless of whether the shopper is on your site or not. * `PAYOUT` – Payment details can be used to [make a payout](https://docs.adyen.com/online-payments/online-payouts).
13
+
* The type of recurring contract to be used. Possible values: * `ONECLICK` – Payment details can be used to initiate a one-click payment, where the shopper enters the [card security code (CVC/CVV)](https://docs.adyen.com/payments-fundamentals/payment-glossary#card-security-code-cvc-cvv-cid). * `RECURRING` – Payment details can be used without the card security code to initiate [card-not-present transactions](https://docs.adyen.com/payments-fundamentals/payment-glossary#card-not-present-cnp). * `ONECLICK,RECURRING` – Payment details can be used regardless of whether the shopper is on your site or not. * `PAYOUT` – Payment details can be used to [make a payout](https://docs.adyen.com/online-payments/online-payouts). * `EXTERNAL` - Use this when you store payment details and send the raw card number or network token directly in your API request.
Copy file name to clipboardExpand all lines: src/typings/checkout/additionalDataLevel23.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ export class AdditionalDataLevel23 {
74
74
*/
75
75
"enhancedSchemeData_shipFromPostalCode"?: string;
76
76
/**
77
-
* The amount of state or provincial [tax included in the total transaction amount](https://docs.adyen.com/payment-methods/cards/enhanced-scheme-data/l2-l3#requirements-to-send-level-2-3-esd), in [minor units](https://docs.adyen.com/development-resources/currency-codes). * For example, 2000 means USD 20.00. * Encoding: Numeric * Max length: 12 characters * Must not be all zeros.
77
+
* The amount of state or provincial [tax included in the total transaction amount](https://docs.adyen.com/payment-methods/cards/enhanced-scheme-data/l2-l3#requirements-to-send-level-2-3-esd), in [minor units](https://docs.adyen.com/development-resources/currency-codes). * For example, 2000 means USD 20.00. * Encoding: Numeric * Max length: 12 characters * For L2 data: must not be all zeroes. * For L3 data: can be zero.
* Required for transactions performed by registered payment facilitators. The phone number of the sub-merchant.* Format: Alphanumeric * Maximum length: 20 characters
41
+
* Required for transactions performed by registered payment facilitators. The phone number of the sub-merchant.* Format: Alphanumeric and special characters * Maximum length: 20 characters
Copy file name to clipboardExpand all lines: src/typings/checkout/cardDetailsRequest.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ export class CardDetailsRequest {
12
12
/**
13
13
* A minimum of the first six digits of the card number. The full card number gives the best result. You must be [fully PCI compliant](https://docs.adyen.com/development-resources/pci-dss-compliance-guide) to collect raw card data. Alternatively, you can use the `encryptedCardNumber` field.
14
14
*/
15
-
"cardNumber": string;
15
+
"cardNumber"?: string;
16
16
/**
17
17
* The shopper country. Format: [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) Example: NL or DE
@@ -162,7 +162,7 @@ export class CreateCheckoutSessionRequest {
162
162
* The combination of a language code and a country code to specify the language to be used in the payment.
163
163
*/
164
164
"shopperLocale"?: string;
165
-
"shopperName"?: Name|null;
165
+
"shopperName"?: ShopperName|null;
166
166
/**
167
167
* Your reference to uniquely identify this shopper, for example user ID or account ID. The value is case-sensitive and must be at least three characters. > Your reference must not include personally identifiable information (PII) such as name or email address.
168
168
*/
@@ -500,7 +500,7 @@ export class CreateCheckoutSessionRequest {
@@ -170,7 +170,7 @@ export class CreateCheckoutSessionResponse {
170
170
* The combination of a language code and a country code to specify the language to be used in the payment.
171
171
*/
172
172
"shopperLocale"?: string;
173
-
"shopperName"?: Name|null;
173
+
"shopperName"?: ShopperName|null;
174
174
/**
175
175
* Your reference to uniquely identify this shopper, for example user ID or account ID. The value is case-sensitive and must be at least three characters. > Your reference must not include personally identifiable information (PII) such as name or email address.
176
176
*/
@@ -524,7 +524,7 @@ export class CreateCheckoutSessionResponse {
@@ -140,7 +140,7 @@ export class DonationPaymentRequest {
140
140
* The combination of a language code and a country code to specify the language to be used in the payment.
141
141
*/
142
142
"shopperLocale"?: string;
143
-
"shopperName"?: Name|null;
143
+
"shopperName"?: ShopperName|null;
144
144
/**
145
145
* Required for recurring payments. Your reference to uniquely identify this shopper, for example user ID or account ID. Minimum length: 3 characters. > Your reference must not include personally identifiable information (PII), for example name or email address.
146
146
*/
@@ -386,7 +386,7 @@ export class DonationPaymentRequest {
0 commit comments