in src/main/java/com/alibaba/yjopenapi/client/model/LiveStartGameLiveForms.java [121:134]
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LiveStartGameLiveForms liveStartGameLiveForms = (LiveStartGameLiveForms) o;
return Objects.equals(this.appKey, liveStartGameLiveForms.appKey) &&
Objects.equals(this.gameSession, liveStartGameLiveForms.gameSession) &&
Objects.equals(this.serverUrl, liveStartGameLiveForms.serverUrl) &&
Objects.equals(this.streamKey, liveStartGameLiveForms.streamKey) &&
Objects.equals(this.config, liveStartGameLiveForms.config);
}