in openai-java-core/src/main/kotlin/com/openai/models/evals/runs/outputitems/OutputItemListResponse.kt [1971:1977]
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is OutputItemListResponse && id == other.id && createdAt == other.createdAt && datasourceItem == other.datasourceItem && datasourceItemId == other.datasourceItemId && evalId == other.evalId && object_ == other.object_ && results == other.results && runId == other.runId && sample == other.sample && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */
}