public boolean equals()

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


  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    StopGameForms stopGameForms = (StopGameForms) o;
    return Objects.equals(this.accountId, stopGameForms.accountId) &&
        Objects.equals(this.gameId, stopGameForms.gameId) &&
        Objects.equals(this.appKey, stopGameForms.appKey) &&
        Objects.equals(this.gameSession, stopGameForms.gameSession) &&
        Objects.equals(this.reason, stopGameForms.reason);
  }