public boolean equals()

in src/main/java/com/alibaba/yjopenapi/client/model/MultiplayQueryResultModel.java [152:166]


  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    MultiplayQueryResultModel multiplayQueryResultModel = (MultiplayQueryResultModel) o;
    return Objects.equals(this.dataVer, multiplayQueryResultModel.dataVer) &&
        Objects.equals(this.mpId, multiplayQueryResultModel.mpId) &&
        Objects.equals(this.config, multiplayQueryResultModel.config) &&
        Objects.equals(this.creatorTokenId, multiplayQueryResultModel.creatorTokenId) &&
        Objects.equals(this.endTs, multiplayQueryResultModel.endTs) &&
        Objects.equals(this.tokens, multiplayQueryResultModel.tokens);
  }