public boolean equals()

in src/main/java/com/alibaba/yjopenapi/client/model/StopGameResultModel.java [120:133]


  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    StopGameResultModel stopGameResultModel = (StopGameResultModel) o;
    return Objects.equals(this.gameId, stopGameResultModel.gameId) &&
        Objects.equals(this.gameSession, stopGameResultModel.gameSession) &&
        Objects.equals(this.code, stopGameResultModel.code) &&
        Objects.equals(this.message, stopGameResultModel.message) &&
        Objects.equals(this.success, stopGameResultModel.success);
  }