public boolean equals()

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


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    CouponPaymentEvent couponPaymentEvent = (CouponPaymentEvent) o;
    return Objects.equals(this.postedDate, couponPaymentEvent.postedDate) &&
        Objects.equals(this.couponId, couponPaymentEvent.couponId) &&
        Objects.equals(this.sellerCouponDescription, couponPaymentEvent.sellerCouponDescription) &&
        Objects.equals(this.clipOrRedemptionCount, couponPaymentEvent.clipOrRedemptionCount) &&
        Objects.equals(this.paymentEventId, couponPaymentEvent.paymentEventId) &&
        Objects.equals(this.feeComponent, couponPaymentEvent.feeComponent) &&
        Objects.equals(this.chargeComponent, couponPaymentEvent.chargeComponent) &&
        Objects.equals(this.totalAmount, couponPaymentEvent.totalAmount);
  }