public boolean equals()

in src/main/java/com/alibaba/yjopenapi/client/model/GetGameConcurrencyResultModel.java [211:228]


  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    GetGameConcurrencyResultModel getGameConcurrencyResultModel = (GetGameConcurrencyResultModel) o;
    return Objects.equals(this.projectId, getGameConcurrencyResultModel.projectId) &&
        Objects.equals(this.gameId, getGameConcurrencyResultModel.gameId) &&
        Objects.equals(this.currentTime, getGameConcurrencyResultModel.currentTime) &&
        Objects.equals(this.queuingTotal, getGameConcurrencyResultModel.queuingTotal) &&
        Objects.equals(this.playingTotal, getGameConcurrencyResultModel.playingTotal) &&
        Objects.equals(this.playingRegionList, getGameConcurrencyResultModel.playingRegionList) &&
        Objects.equals(this.success, getGameConcurrencyResultModel.success) &&
        Objects.equals(this.message, getGameConcurrencyResultModel.message) &&
        Objects.equals(this.code, getGameConcurrencyResultModel.code);
  }