-
Notifications
You must be signed in to change notification settings - Fork 144
[binlookup] Code generation: update services and models #1640
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Summary of ChangesHello @AdyenAutomationBot, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request delivers an automated update to the Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request includes changes to the BinLookup API, specifically in the models for binlookup. The changes involve code formatting, correction of malformed Javadoc comments, and removal of unnecessary semicolons in the equals methods of several classes including Amount, BinDetail, CardBin, CostEstimateAssumptions, CostEstimateRequest, DSPublicKeyDetail, Recurring, ServiceError, ThreeDS2CardRangeDetail, and ThreeDSAvailabilityRequest and ThreeDSAvailabilityResponse.
| return Objects.equals(this.currency, amount.currency) && | ||
| Objects.equals(this.isSetCurrency, amount.isSetCurrency) && | ||
| Objects.equals(this.value, amount.value) && | ||
| Objects.equals(this.isSetValue, amount.isSetValue) | ||
| ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The trailing semicolon on line 158 is unnecessary and creates an empty statement. It should be removed for code clarity.
| return Objects.equals(this.currency, amount.currency) && | |
| Objects.equals(this.isSetCurrency, amount.isSetCurrency) && | |
| Objects.equals(this.value, amount.value) && | |
| Objects.equals(this.isSetValue, amount.isSetValue) | |
| ; | |
| return Objects.equals(this.currency, amount.currency) && | |
| Objects.equals(this.isSetCurrency, amount.isSetCurrency) && | |
| Objects.equals(this.value, amount.value) && | |
| Objects.equals(this.isSetValue, amount.isSetValue); |
| } | ||
|
|
||
| /** | ||
| /** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * | ||
| * @return JSON string | ||
| */ | ||
| /** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| return Objects.equals(this.issuerCountry, binDetail.issuerCountry) && | ||
| Objects.equals(this.isSetIssuerCountry, binDetail.isSetIssuerCountry) | ||
| ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The trailing semicolon on line 116 is unnecessary and creates an empty statement. It should be removed for code clarity.
| return Objects.equals(this.issuerCountry, binDetail.issuerCountry) && | |
| Objects.equals(this.isSetIssuerCountry, binDetail.isSetIssuerCountry) | |
| ; | |
| return Objects.equals(this.issuerCountry, binDetail.issuerCountry) && | |
| Objects.equals(this.isSetIssuerCountry, binDetail.isSetIssuerCountry); |
| return Objects.equals(this.bin, cardBin.bin) && | ||
| Objects.equals(this.isSetBin, cardBin.isSetBin) && | ||
| Objects.equals(this.commercial, cardBin.commercial) && | ||
| Objects.equals(this.isSetCommercial, cardBin.isSetCommercial) && | ||
| Objects.equals(this.fundingSource, cardBin.fundingSource) && | ||
| Objects.equals(this.isSetFundingSource, cardBin.isSetFundingSource) && | ||
| Objects.equals(this.fundsAvailability, cardBin.fundsAvailability) && | ||
| Objects.equals(this.isSetFundsAvailability, cardBin.isSetFundsAvailability) && | ||
| Objects.equals(this.issuerBin, cardBin.issuerBin) && | ||
| Objects.equals(this.isSetIssuerBin, cardBin.isSetIssuerBin) && | ||
| Objects.equals(this.issuingBank, cardBin.issuingBank) && | ||
| Objects.equals(this.isSetIssuingBank, cardBin.isSetIssuingBank) && | ||
| Objects.equals(this.issuingCountry, cardBin.issuingCountry) && | ||
| Objects.equals(this.isSetIssuingCountry, cardBin.isSetIssuingCountry) && | ||
| Objects.equals(this.issuingCurrency, cardBin.issuingCurrency) && | ||
| Objects.equals(this.isSetIssuingCurrency, cardBin.isSetIssuingCurrency) && | ||
| Objects.equals(this.paymentMethod, cardBin.paymentMethod) && | ||
| Objects.equals(this.isSetPaymentMethod, cardBin.isSetPaymentMethod) && | ||
| Objects.equals(this.payoutEligible, cardBin.payoutEligible) && | ||
| Objects.equals(this.isSetPayoutEligible, cardBin.isSetPayoutEligible) && | ||
| Objects.equals(this.summary, cardBin.summary) && | ||
| Objects.equals(this.isSetSummary, cardBin.isSetSummary) | ||
| ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The trailing semicolon on line 536 is unnecessary and creates an empty statement. It should be removed for code clarity.
return Objects.equals(this.bin, cardBin.bin) &&
Objects.equals(this.isSetBin, cardBin.isSetBin) &&
Objects.equals(this.commercial, cardBin.commercial) &&
Objects.equals(this.isSetCommercial, cardBin.isSetCommercial) &&
Objects.equals(this.fundingSource, cardBin.fundingSource) &&
Objects.equals(this.isSetFundingSource, cardBin.isSetFundingSource) &&
Objects.equals(this.fundsAvailability, cardBin.fundsAvailability) &&
Objects.equals(this.isSetFundsAvailability, cardBin.isSetFundsAvailability) &&
Objects.equals(this.issuerBin, cardBin.issuerBin) &&
Objects.equals(this.isSetIssuerBin, cardBin.isSetIssuerBin) &&
Objects.equals(this.issuingBank, cardBin.issuingBank) &&
Objects.equals(this.isSetIssuingBank, cardBin.isSetIssuingBank) &&
Objects.equals(this.issuingCountry, cardBin.issuingCountry) &&
Objects.equals(this.isSetIssuingCountry, cardBin.isSetIssuingCountry) &&
Objects.equals(this.issuingCurrency, cardBin.issuingCurrency) &&
Objects.equals(this.isSetIssuingCurrency, cardBin.isSetIssuingCurrency) &&
Objects.equals(this.paymentMethod, cardBin.paymentMethod) &&
Objects.equals(this.isSetPaymentMethod, cardBin.isSetPaymentMethod) &&
Objects.equals(this.payoutEligible, cardBin.payoutEligible) &&
Objects.equals(this.isSetPayoutEligible, cardBin.isSetPayoutEligible) &&
Objects.equals(this.summary, cardBin.summary) &&
Objects.equals(this.isSetSummary, cardBin.isSetSummary);| return Objects.equals(this.contract, recurring.contract) && | ||
| Objects.equals(this.isSetContract, recurring.isSetContract) && | ||
| Objects.equals(this.recurringDetailName, recurring.recurringDetailName) && | ||
| Objects.equals(this.isSetRecurringDetailName, recurring.isSetRecurringDetailName) && | ||
| Objects.equals(this.recurringExpiry, recurring.recurringExpiry) && | ||
| Objects.equals(this.isSetRecurringExpiry, recurring.isSetRecurringExpiry) && | ||
| Objects.equals(this.recurringFrequency, recurring.recurringFrequency) && | ||
| Objects.equals(this.isSetRecurringFrequency, recurring.isSetRecurringFrequency) && | ||
| Objects.equals(this.tokenService, recurring.tokenService) && | ||
| Objects.equals(this.isSetTokenService, recurring.isSetTokenService) | ||
| ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The trailing semicolon on line 375 is unnecessary and creates an empty statement. It should be removed for code clarity.
| return Objects.equals(this.contract, recurring.contract) && | |
| Objects.equals(this.isSetContract, recurring.isSetContract) && | |
| Objects.equals(this.recurringDetailName, recurring.recurringDetailName) && | |
| Objects.equals(this.isSetRecurringDetailName, recurring.isSetRecurringDetailName) && | |
| Objects.equals(this.recurringExpiry, recurring.recurringExpiry) && | |
| Objects.equals(this.isSetRecurringExpiry, recurring.isSetRecurringExpiry) && | |
| Objects.equals(this.recurringFrequency, recurring.recurringFrequency) && | |
| Objects.equals(this.isSetRecurringFrequency, recurring.isSetRecurringFrequency) && | |
| Objects.equals(this.tokenService, recurring.tokenService) && | |
| Objects.equals(this.isSetTokenService, recurring.isSetTokenService) | |
| ; | |
| return Objects.equals(this.contract, recurring.contract) && | |
| Objects.equals(this.isSetContract, recurring.isSetContract) && | |
| Objects.equals(this.recurringDetailName, recurring.recurringDetailName) && | |
| Objects.equals(this.isSetRecurringDetailName, recurring.isSetRecurringDetailName) && | |
| Objects.equals(this.recurringExpiry, recurring.recurringExpiry) && | |
| Objects.equals(this.isSetRecurringExpiry, recurring.isSetRecurringExpiry) && | |
| Objects.equals(this.recurringFrequency, recurring.recurringFrequency) && | |
| Objects.equals(this.isSetRecurringFrequency, recurring.isSetRecurringFrequency) && | |
| Objects.equals(this.tokenService, recurring.tokenService) && | |
| Objects.equals(this.isSetTokenService, recurring.isSetTokenService); |
| return Objects.equals(this.additionalData, serviceError.additionalData) && | ||
| Objects.equals(this.isSetAdditionalData, serviceError.isSetAdditionalData) && | ||
| Objects.equals(this.errorCode, serviceError.errorCode) && | ||
| Objects.equals(this.isSetErrorCode, serviceError.isSetErrorCode) && | ||
| Objects.equals(this.errorType, serviceError.errorType) && | ||
| Objects.equals(this.isSetErrorType, serviceError.isSetErrorType) && | ||
| Objects.equals(this.message, serviceError.message) && | ||
| Objects.equals(this.isSetMessage, serviceError.isSetMessage) && | ||
| Objects.equals(this.pspReference, serviceError.pspReference) && | ||
| Objects.equals(this.isSetPspReference, serviceError.isSetPspReference) && | ||
| Objects.equals(this.status, serviceError.status) && | ||
| Objects.equals(this.isSetStatus, serviceError.isSetStatus) | ||
| ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The trailing semicolon on line 336 is unnecessary and creates an empty statement. It should be removed for code clarity.
| return Objects.equals(this.additionalData, serviceError.additionalData) && | |
| Objects.equals(this.isSetAdditionalData, serviceError.isSetAdditionalData) && | |
| Objects.equals(this.errorCode, serviceError.errorCode) && | |
| Objects.equals(this.isSetErrorCode, serviceError.isSetErrorCode) && | |
| Objects.equals(this.errorType, serviceError.errorType) && | |
| Objects.equals(this.isSetErrorType, serviceError.isSetErrorType) && | |
| Objects.equals(this.message, serviceError.message) && | |
| Objects.equals(this.isSetMessage, serviceError.isSetMessage) && | |
| Objects.equals(this.pspReference, serviceError.pspReference) && | |
| Objects.equals(this.isSetPspReference, serviceError.isSetPspReference) && | |
| Objects.equals(this.status, serviceError.status) && | |
| Objects.equals(this.isSetStatus, serviceError.isSetStatus) | |
| ; | |
| return Objects.equals(this.additionalData, serviceError.additionalData) && | |
| Objects.equals(this.isSetAdditionalData, serviceError.isSetAdditionalData) && | |
| Objects.equals(this.errorCode, serviceError.errorCode) && | |
| Objects.equals(this.isSetErrorCode, serviceError.isSetErrorCode) && | |
| Objects.equals(this.errorType, serviceError.errorType) && | |
| Objects.equals(this.isSetErrorType, serviceError.isSetErrorType) && | |
| Objects.equals(this.message, serviceError.message) && | |
| Objects.equals(this.isSetMessage, serviceError.isSetMessage) && | |
| Objects.equals(this.pspReference, serviceError.pspReference) && | |
| Objects.equals(this.isSetPspReference, serviceError.isSetPspReference) && | |
| Objects.equals(this.status, serviceError.status) && | |
| Objects.equals(this.isSetStatus, serviceError.isSetStatus); |
| return Objects.equals(this.acsInfoInd, threeDS2CardRangeDetail.acsInfoInd) && | ||
| Objects.equals(this.isSetAcsInfoInd, threeDS2CardRangeDetail.isSetAcsInfoInd) && | ||
| Objects.equals(this.brandCode, threeDS2CardRangeDetail.brandCode) && | ||
| Objects.equals(this.isSetBrandCode, threeDS2CardRangeDetail.isSetBrandCode) && | ||
| Objects.equals(this.endRange, threeDS2CardRangeDetail.endRange) && | ||
| Objects.equals(this.isSetEndRange, threeDS2CardRangeDetail.isSetEndRange) && | ||
| Objects.equals(this.startRange, threeDS2CardRangeDetail.startRange) && | ||
| Objects.equals(this.isSetStartRange, threeDS2CardRangeDetail.isSetStartRange) && | ||
| Objects.equals(this.threeDS2Versions, threeDS2CardRangeDetail.threeDS2Versions) && | ||
| Objects.equals(this.isSetThreeDS2Versions, threeDS2CardRangeDetail.isSetThreeDS2Versions) && | ||
| Objects.equals(this.threeDSMethodURL, threeDS2CardRangeDetail.threeDSMethodURL) && | ||
| Objects.equals(this.isSetThreeDSMethodURL, threeDS2CardRangeDetail.isSetThreeDSMethodURL) | ||
| ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The trailing semicolon on line 344 is unnecessary and creates an empty statement. It should be removed for code clarity.
| return Objects.equals(this.acsInfoInd, threeDS2CardRangeDetail.acsInfoInd) && | |
| Objects.equals(this.isSetAcsInfoInd, threeDS2CardRangeDetail.isSetAcsInfoInd) && | |
| Objects.equals(this.brandCode, threeDS2CardRangeDetail.brandCode) && | |
| Objects.equals(this.isSetBrandCode, threeDS2CardRangeDetail.isSetBrandCode) && | |
| Objects.equals(this.endRange, threeDS2CardRangeDetail.endRange) && | |
| Objects.equals(this.isSetEndRange, threeDS2CardRangeDetail.isSetEndRange) && | |
| Objects.equals(this.startRange, threeDS2CardRangeDetail.startRange) && | |
| Objects.equals(this.isSetStartRange, threeDS2CardRangeDetail.isSetStartRange) && | |
| Objects.equals(this.threeDS2Versions, threeDS2CardRangeDetail.threeDS2Versions) && | |
| Objects.equals(this.isSetThreeDS2Versions, threeDS2CardRangeDetail.isSetThreeDS2Versions) && | |
| Objects.equals(this.threeDSMethodURL, threeDS2CardRangeDetail.threeDSMethodURL) && | |
| Objects.equals(this.isSetThreeDSMethodURL, threeDS2CardRangeDetail.isSetThreeDSMethodURL) | |
| ; | |
| return Objects.equals(this.acsInfoInd, threeDS2CardRangeDetail.acsInfoInd) && | |
| Objects.equals(this.isSetAcsInfoInd, threeDS2CardRangeDetail.isSetAcsInfoInd) && | |
| Objects.equals(this.brandCode, threeDS2CardRangeDetail.brandCode) && | |
| Objects.equals(this.isSetBrandCode, threeDS2CardRangeDetail.isSetBrandCode) && | |
| Objects.equals(this.endRange, threeDS2CardRangeDetail.endRange) && | |
| Objects.equals(this.isSetEndRange, threeDS2CardRangeDetail.isSetEndRange) && | |
| Objects.equals(this.startRange, threeDS2CardRangeDetail.startRange) && | |
| Objects.equals(this.isSetStartRange, threeDS2CardRangeDetail.isSetStartRange) && | |
| Objects.equals(this.threeDS2Versions, threeDS2CardRangeDetail.threeDS2Versions) && | |
| Objects.equals(this.isSetThreeDS2Versions, threeDS2CardRangeDetail.isSetThreeDS2Versions) && | |
| Objects.equals(this.threeDSMethodURL, threeDS2CardRangeDetail.threeDSMethodURL) && | |
| Objects.equals(this.isSetThreeDSMethodURL, threeDS2CardRangeDetail.isSetThreeDSMethodURL); |
| return Objects.equals(this.additionalData, threeDSAvailabilityRequest.additionalData) && | ||
| Objects.equals(this.isSetAdditionalData, threeDSAvailabilityRequest.isSetAdditionalData) && | ||
| Objects.equals(this.brands, threeDSAvailabilityRequest.brands) && | ||
| Objects.equals(this.isSetBrands, threeDSAvailabilityRequest.isSetBrands) && | ||
| Objects.equals(this.cardNumber, threeDSAvailabilityRequest.cardNumber) && | ||
| Objects.equals(this.isSetCardNumber, threeDSAvailabilityRequest.isSetCardNumber) && | ||
| Objects.equals(this.merchantAccount, threeDSAvailabilityRequest.merchantAccount) && | ||
| Objects.equals(this.isSetMerchantAccount, threeDSAvailabilityRequest.isSetMerchantAccount) && | ||
| Objects.equals(this.recurringDetailReference, threeDSAvailabilityRequest.recurringDetailReference) && | ||
| Objects.equals(this.isSetRecurringDetailReference, threeDSAvailabilityRequest.isSetRecurringDetailReference) && | ||
| Objects.equals(this.shopperReference, threeDSAvailabilityRequest.shopperReference) && | ||
| Objects.equals(this.isSetShopperReference, threeDSAvailabilityRequest.isSetShopperReference) | ||
| ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The trailing semicolon on line 346 is unnecessary and creates an empty statement. It should be removed for code clarity.
| return Objects.equals(this.additionalData, threeDSAvailabilityRequest.additionalData) && | |
| Objects.equals(this.isSetAdditionalData, threeDSAvailabilityRequest.isSetAdditionalData) && | |
| Objects.equals(this.brands, threeDSAvailabilityRequest.brands) && | |
| Objects.equals(this.isSetBrands, threeDSAvailabilityRequest.isSetBrands) && | |
| Objects.equals(this.cardNumber, threeDSAvailabilityRequest.cardNumber) && | |
| Objects.equals(this.isSetCardNumber, threeDSAvailabilityRequest.isSetCardNumber) && | |
| Objects.equals(this.merchantAccount, threeDSAvailabilityRequest.merchantAccount) && | |
| Objects.equals(this.isSetMerchantAccount, threeDSAvailabilityRequest.isSetMerchantAccount) && | |
| Objects.equals(this.recurringDetailReference, threeDSAvailabilityRequest.recurringDetailReference) && | |
| Objects.equals(this.isSetRecurringDetailReference, threeDSAvailabilityRequest.isSetRecurringDetailReference) && | |
| Objects.equals(this.shopperReference, threeDSAvailabilityRequest.shopperReference) && | |
| Objects.equals(this.isSetShopperReference, threeDSAvailabilityRequest.isSetShopperReference) | |
| ; | |
| return Objects.equals(this.additionalData, threeDSAvailabilityRequest.additionalData) && | |
| Objects.equals(this.isSetAdditionalData, threeDSAvailabilityRequest.isSetAdditionalData) && | |
| Objects.equals(this.brands, threeDSAvailabilityRequest.brands) && | |
| Objects.equals(this.isSetBrands, threeDSAvailabilityRequest.isSetBrands) && | |
| Objects.equals(this.cardNumber, threeDSAvailabilityRequest.cardNumber) && | |
| Objects.equals(this.isSetCardNumber, threeDSAvailabilityRequest.isSetCardNumber) && | |
| Objects.equals(this.merchantAccount, threeDSAvailabilityRequest.merchantAccount) && | |
| Objects.equals(this.isSetMerchantAccount, threeDSAvailabilityRequest.isSetMerchantAccount) && | |
| Objects.equals(this.recurringDetailReference, threeDSAvailabilityRequest.recurringDetailReference) && | |
| Objects.equals(this.isSetRecurringDetailReference, threeDSAvailabilityRequest.isSetRecurringDetailReference) && | |
| Objects.equals(this.shopperReference, threeDSAvailabilityRequest.shopperReference) && | |
| Objects.equals(this.isSetShopperReference, threeDSAvailabilityRequest.isSetShopperReference); |
| return Objects.equals(this.binDetails, threeDSAvailabilityResponse.binDetails) && | ||
| Objects.equals(this.isSetBinDetails, threeDSAvailabilityResponse.isSetBinDetails) && | ||
| Objects.equals(this.dsPublicKeys, threeDSAvailabilityResponse.dsPublicKeys) && | ||
| Objects.equals(this.isSetDsPublicKeys, threeDSAvailabilityResponse.isSetDsPublicKeys) && | ||
| Objects.equals(this.threeDS1Supported, threeDSAvailabilityResponse.threeDS1Supported) && | ||
| Objects.equals(this.isSetThreeDS1Supported, threeDSAvailabilityResponse.isSetThreeDS1Supported) && | ||
| Objects.equals(this.threeDS2CardRangeDetails, threeDSAvailabilityResponse.threeDS2CardRangeDetails) && | ||
| Objects.equals(this.isSetThreeDS2CardRangeDetails, threeDSAvailabilityResponse.isSetThreeDS2CardRangeDetails) && | ||
| Objects.equals(this.threeDS2supported, threeDSAvailabilityResponse.threeDS2supported) && | ||
| Objects.equals(this.isSetThreeDS2supported, threeDSAvailabilityResponse.isSetThreeDS2supported) | ||
| ; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The trailing semicolon on line 305 is unnecessary and creates an empty statement. It should be removed for code clarity.
| return Objects.equals(this.binDetails, threeDSAvailabilityResponse.binDetails) && | |
| Objects.equals(this.isSetBinDetails, threeDSAvailabilityResponse.isSetBinDetails) && | |
| Objects.equals(this.dsPublicKeys, threeDSAvailabilityResponse.dsPublicKeys) && | |
| Objects.equals(this.isSetDsPublicKeys, threeDSAvailabilityResponse.isSetDsPublicKeys) && | |
| Objects.equals(this.threeDS1Supported, threeDSAvailabilityResponse.threeDS1Supported) && | |
| Objects.equals(this.isSetThreeDS1Supported, threeDSAvailabilityResponse.isSetThreeDS1Supported) && | |
| Objects.equals(this.threeDS2CardRangeDetails, threeDSAvailabilityResponse.threeDS2CardRangeDetails) && | |
| Objects.equals(this.isSetThreeDS2CardRangeDetails, threeDSAvailabilityResponse.isSetThreeDS2CardRangeDetails) && | |
| Objects.equals(this.threeDS2supported, threeDSAvailabilityResponse.threeDS2supported) && | |
| Objects.equals(this.isSetThreeDS2supported, threeDSAvailabilityResponse.isSetThreeDS2supported) | |
| ; | |
| return Objects.equals(this.binDetails, threeDSAvailabilityResponse.binDetails) && | |
| Objects.equals(this.isSetBinDetails, threeDSAvailabilityResponse.isSetBinDetails) && | |
| Objects.equals(this.dsPublicKeys, threeDSAvailabilityResponse.dsPublicKeys) && | |
| Objects.equals(this.isSetDsPublicKeys, threeDSAvailabilityResponse.isSetDsPublicKeys) && | |
| Objects.equals(this.threeDS1Supported, threeDSAvailabilityResponse.threeDS1Supported) && | |
| Objects.equals(this.isSetThreeDS1Supported, threeDSAvailabilityResponse.isSetThreeDS1Supported) && | |
| Objects.equals(this.threeDS2CardRangeDetails, threeDSAvailabilityResponse.threeDS2CardRangeDetails) && | |
| Objects.equals(this.isSetThreeDS2CardRangeDetails, threeDSAvailabilityResponse.isSetThreeDS2CardRangeDetails) && | |
| Objects.equals(this.threeDS2supported, threeDSAvailabilityResponse.threeDS2supported) && | |
| Objects.equals(this.isSetThreeDS2supported, threeDSAvailabilityResponse.isSetThreeDS2supported); |
6f0d4bb to
54d615a
Compare
ef6e780 to
981fc27
Compare
This PR contains the automated changes for the
binlookupservice.The commit history of this PR reflects the
adyen-openapicommits that have been applied.