public boolean equals()

in lambda/src/main/java/cn/amazon/aws/rp/spapi/clients/model/PayWithAmazonEvent.java [240:258]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    PayWithAmazonEvent payWithAmazonEvent = (PayWithAmazonEvent) o;
    return Objects.equals(this.sellerOrderId, payWithAmazonEvent.sellerOrderId) &&
        Objects.equals(this.transactionPostedDate, payWithAmazonEvent.transactionPostedDate) &&
        Objects.equals(this.businessObjectType, payWithAmazonEvent.businessObjectType) &&
        Objects.equals(this.salesChannel, payWithAmazonEvent.salesChannel) &&
        Objects.equals(this.charge, payWithAmazonEvent.charge) &&
        Objects.equals(this.feeList, payWithAmazonEvent.feeList) &&
        Objects.equals(this.paymentAmountType, payWithAmazonEvent.paymentAmountType) &&
        Objects.equals(this.amountDescription, payWithAmazonEvent.amountDescription) &&
        Objects.equals(this.fulfillmentChannel, payWithAmazonEvent.fulfillmentChannel) &&
        Objects.equals(this.storeName, payWithAmazonEvent.storeName);
  }