Skip to content

Commit d0be308

Browse files
Update all services (#1392)
* false[adyen-sdk-automation] automated change * Correct enums (legacy) * Add test for RatePay (using CheckoutBankAccount) * Add TestPaymentWithRiverty --------- Co-authored-by: Beppe Catanese <[email protected]> Co-authored-by: gcatanese <[email protected]>
1 parent 1d82356 commit d0be308

File tree

10 files changed

+1359
-12
lines changed

10 files changed

+1359
-12
lines changed

Diff for: src/main/java/com/adyen/model/checkout/CardDetailsRequest.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public CardDetailsRequest() {
6060
}
6161

6262
/**
63-
* A minimum of the first 8 digits of the card number and a maximum of the full card number. 11 digits 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.
63+
* 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.
6464
*
6565
* @param cardNumber
6666
* @return the current {@code CardDetailsRequest} instance, allowing for method chaining
@@ -71,18 +71,18 @@ public CardDetailsRequest cardNumber(String cardNumber) {
7171
}
7272

7373
/**
74-
* A minimum of the first 8 digits of the card number and a maximum of the full card number. 11 digits 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.
74+
* 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.
7575
* @return cardNumber
7676
*/
77-
@ApiModelProperty(required = true, value = "A minimum of the first 8 digits of the card number and a maximum of the full card number. 11 digits 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.")
77+
@ApiModelProperty(required = true, value = "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.")
7878
@JsonProperty(JSON_PROPERTY_CARD_NUMBER)
7979
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
8080
public String getCardNumber() {
8181
return cardNumber;
8282
}
8383

8484
/**
85-
* A minimum of the first 8 digits of the card number and a maximum of the full card number. 11 digits 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.
85+
* 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.
8686
*
8787
* @param cardNumber
8888
*/

0 commit comments

Comments
 (0)