in lambda/src/main/java/cn/amazon/aws/rp/spapi/clients/model/RentalTransactionEvent.java [240:258]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
RentalTransactionEvent rentalTransactionEvent = (RentalTransactionEvent) o;
return Objects.equals(this.amazonOrderId, rentalTransactionEvent.amazonOrderId) &&
Objects.equals(this.rentalEventType, rentalTransactionEvent.rentalEventType) &&
Objects.equals(this.extensionLength, rentalTransactionEvent.extensionLength) &&
Objects.equals(this.postedDate, rentalTransactionEvent.postedDate) &&
Objects.equals(this.rentalChargeList, rentalTransactionEvent.rentalChargeList) &&
Objects.equals(this.rentalFeeList, rentalTransactionEvent.rentalFeeList) &&
Objects.equals(this.marketplaceName, rentalTransactionEvent.marketplaceName) &&
Objects.equals(this.rentalInitialValue, rentalTransactionEvent.rentalInitialValue) &&
Objects.equals(this.rentalReimbursement, rentalTransactionEvent.rentalReimbursement) &&
Objects.equals(this.rentalTaxWithheldList, rentalTransactionEvent.rentalTaxWithheldList);
}