public boolean equals()

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


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    NetworkComminglingTransactionEvent networkComminglingTransactionEvent = (NetworkComminglingTransactionEvent) o;
    return Objects.equals(this.transactionType, networkComminglingTransactionEvent.transactionType) &&
        Objects.equals(this.postedDate, networkComminglingTransactionEvent.postedDate) &&
        Objects.equals(this.netCoTransactionID, networkComminglingTransactionEvent.netCoTransactionID) &&
        Objects.equals(this.swapReason, networkComminglingTransactionEvent.swapReason) &&
        Objects.equals(this.ASIN, networkComminglingTransactionEvent.ASIN) &&
        Objects.equals(this.marketplaceId, networkComminglingTransactionEvent.marketplaceId) &&
        Objects.equals(this.taxExclusiveAmount, networkComminglingTransactionEvent.taxExclusiveAmount) &&
        Objects.equals(this.taxAmount, networkComminglingTransactionEvent.taxAmount);
  }