public boolean equals()

in lambda/src/main/java/cn/amazon/aws/rp/spapi/clients/model/SellerDealPaymentEvent.java [198:214]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    SellerDealPaymentEvent sellerDealPaymentEvent = (SellerDealPaymentEvent) o;
    return Objects.equals(this.postedDate, sellerDealPaymentEvent.postedDate) &&
        Objects.equals(this.dealId, sellerDealPaymentEvent.dealId) &&
        Objects.equals(this.dealDescription, sellerDealPaymentEvent.dealDescription) &&
        Objects.equals(this.eventType, sellerDealPaymentEvent.eventType) &&
        Objects.equals(this.feeType, sellerDealPaymentEvent.feeType) &&
        Objects.equals(this.feeAmount, sellerDealPaymentEvent.feeAmount) &&
        Objects.equals(this.taxAmount, sellerDealPaymentEvent.taxAmount) &&
        Objects.equals(this.totalAmount, sellerDealPaymentEvent.totalAmount);
  }