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
@@ -253,8 +255,10 @@ public function getContractAllowableValues()
253
255
{
254
256
return [
255
257
self::CONTRACT_ONECLICK,
258
+
self::CONTRACT_ONECLICKRECURRING,
256
259
self::CONTRACT_RECURRING,
257
260
self::CONTRACT_PAYOUT,
261
+
self::CONTRACT_EXTERNAL,
258
262
];
259
263
}
260
264
/**
@@ -366,7 +370,7 @@ public function getContract()
366
370
/**
367
371
* Sets contract
368
372
*
369
-
* @param string|null $contract 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).
373
+
* @param string|null $contract 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/Adyen/Model/Checkout/AdditionalDataLevel23.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -782,7 +782,7 @@ public function getEnhancedSchemeDataTotalTaxAmount()
782
782
/**
783
783
* Sets enhancedSchemeDataTotalTaxAmount
784
784
*
785
-
* @param string|null $enhancedSchemeDataTotalTaxAmount 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.
785
+
* @param string|null $enhancedSchemeDataTotalTaxAmount 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.
Copy file name to clipboardExpand all lines: src/Adyen/Model/Checkout/CardDetailsRequest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -320,7 +320,7 @@ public function getCardNumber()
320
320
/**
321
321
* Sets cardNumber
322
322
*
323
-
* @param string $cardNumber A minimum of the first eight 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.
323
+
* @param string $cardNumber 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.
@@ -2070,7 +2098,7 @@ public function getShopperEmail()
2070
2098
/**
2071
2099
* Sets shopperEmail
2072
2100
*
2073
-
* @param string $shopperEmail
2101
+
* @param string $shopperEmail
2074
2102
*
2075
2103
* @return self
2076
2104
*/
@@ -2094,7 +2122,7 @@ public function getTelephoneNumber()
2094
2122
/**
2095
2123
* Sets telephoneNumber
2096
2124
*
2097
-
* @param string $telephoneNumber
2125
+
* @param string $telephoneNumber
2098
2126
*
2099
2127
* @return self
2100
2128
*/
@@ -2540,7 +2568,7 @@ public function setSamsungPayToken($samsungPayToken)
2540
2568
/**
2541
2569
* Gets billingSequenceNumber
2542
2570
*
2543
-
* @return string
2571
+
* @return string|null
2544
2572
*/
2545
2573
publicfunctiongetBillingSequenceNumber()
2546
2574
{
@@ -2550,7 +2578,7 @@ public function getBillingSequenceNumber()
2550
2578
/**
2551
2579
* Sets billingSequenceNumber
2552
2580
*
2553
-
* @param string $billingSequenceNumber The sequence number for the debit. For example, send **2** if this is the second debit for the subscription. The sequence number is included in the notification sent to the shopper.
2581
+
* @param string|null $billingSequenceNumber The sequence number for the debit. For example, send **2** if this is the second debit for the subscription. The sequence number is included in the notification sent to the shopper.
0 commit comments