Skip to content

Commit

Permalink
Update all services (#1392)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
3 people authored Nov 18, 2024
1 parent 1d82356 commit d0be308
Show file tree
Hide file tree
Showing 10 changed files with 1,359 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public CardDetailsRequest() {
}

/**
* 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.
* 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.
*
* @param cardNumber
* @return the current {@code CardDetailsRequest} instance, allowing for method chaining
Expand All @@ -71,18 +71,18 @@ public CardDetailsRequest cardNumber(String cardNumber) {
}

/**
* 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.
* 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.
* @return cardNumber
*/
@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.")
@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.")
@JsonProperty(JSON_PROPERTY_CARD_NUMBER)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getCardNumber() {
return cardNumber;
}

/**
* 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.
* 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.
*
* @param cardNumber
*/
Expand Down
Loading

0 comments on commit d0be308

Please sign in to comment.