public boolean equals()

in src/main/java/com/alibaba/yjopenapi/client/model/InteractiveGetPartyForms.java [121:134]


  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    InteractiveGetPartyForms interactiveGetPartyForms = (InteractiveGetPartyForms) o;
    return Objects.equals(this.mixGameId, interactiveGetPartyForms.mixGameId) &&
        Objects.equals(this.userId, interactiveGetPartyForms.userId) &&
        Objects.equals(this.reConnect, interactiveGetPartyForms.reConnect) &&
        Objects.equals(this.projectId, interactiveGetPartyForms.projectId) &&
        Objects.equals(this.config, interactiveGetPartyForms.config);
  }