public boolean equals()

in src/main/java/com/alibaba/yjopenapi/client/model/BatchStopGameForms.java [140:154]


  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    BatchStopGameForms batchStopGameForms = (BatchStopGameForms) o;
    return Objects.equals(this.gameId, batchStopGameForms.gameId) &&
        Objects.equals(this.appKey, batchStopGameForms.appKey) &&
        Objects.equals(this.token, batchStopGameForms.token) &&
        Objects.equals(this.reason, batchStopGameForms.reason) &&
        Objects.equals(this.trackInfo, batchStopGameForms.trackInfo) &&
        Objects.equals(this.tags, batchStopGameForms.tags);
  }