in src/main/java/com/alibaba/yjopenapi/client/model/ConsoleAdminSubmitDeploymentForms.java [120:133]
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ConsoleAdminSubmitDeploymentForms consoleAdminSubmitDeploymentForms = (ConsoleAdminSubmitDeploymentForms) o;
return Objects.equals(this.gameId, consoleAdminSubmitDeploymentForms.gameId) &&
Objects.equals(this.projectId, consoleAdminSubmitDeploymentForms.projectId) &&
Objects.equals(this.versionId, consoleAdminSubmitDeploymentForms.versionId) &&
Objects.equals(this.cloudGameInstanceIds, consoleAdminSubmitDeploymentForms.cloudGameInstanceIds) &&
Objects.equals(this.operationType, consoleAdminSubmitDeploymentForms.operationType);
}