in lambda/src/main/java/cn/amazon/aws/rp/spapi/clients/model/FinancialEvents.java [492:522]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
FinancialEvents financialEvents = (FinancialEvents) o;
return Objects.equals(this.shipmentEventList, financialEvents.shipmentEventList) &&
Objects.equals(this.refundEventList, financialEvents.refundEventList) &&
Objects.equals(this.guaranteeClaimEventList, financialEvents.guaranteeClaimEventList) &&
Objects.equals(this.chargebackEventList, financialEvents.chargebackEventList) &&
Objects.equals(this.payWithAmazonEventList, financialEvents.payWithAmazonEventList) &&
Objects.equals(this.serviceProviderCreditEventList, financialEvents.serviceProviderCreditEventList) &&
Objects.equals(this.retrochargeEventList, financialEvents.retrochargeEventList) &&
Objects.equals(this.rentalTransactionEventList, financialEvents.rentalTransactionEventList) &&
Objects.equals(this.productAdsPaymentEventList, financialEvents.productAdsPaymentEventList) &&
Objects.equals(this.serviceFeeEventList, financialEvents.serviceFeeEventList) &&
Objects.equals(this.sellerDealPaymentEventList, financialEvents.sellerDealPaymentEventList) &&
Objects.equals(this.debtRecoveryEventList, financialEvents.debtRecoveryEventList) &&
Objects.equals(this.loanServicingEventList, financialEvents.loanServicingEventList) &&
Objects.equals(this.adjustmentEventList, financialEvents.adjustmentEventList) &&
Objects.equals(this.saFETReimbursementEventList, financialEvents.saFETReimbursementEventList) &&
Objects.equals(this.sellerReviewEnrollmentPaymentEventList, financialEvents.sellerReviewEnrollmentPaymentEventList) &&
Objects.equals(this.fbALiquidationEventList, financialEvents.fbALiquidationEventList) &&
Objects.equals(this.couponPaymentEventList, financialEvents.couponPaymentEventList) &&
Objects.equals(this.imagingServicesFeeEventList, financialEvents.imagingServicesFeeEventList) &&
Objects.equals(this.networkComminglingTransactionEventList, financialEvents.networkComminglingTransactionEventList) &&
Objects.equals(this.affordabilityExpenseEventList, financialEvents.affordabilityExpenseEventList) &&
Objects.equals(this.affordabilityExpenseReversalEventList, financialEvents.affordabilityExpenseReversalEventList);
}