override fun equals()

in openai-java-core/src/main/kotlin/com/openai/models/evals/runs/outputitems/OutputItemRetrieveResponse.kt [1953:1959]


        override fun equals(other: Any?): Boolean {
            if (this === other) {
                return true
            }

            return /* spotless:off */ other is Sample && error == other.error && finishReason == other.finishReason && input == other.input && maxCompletionTokens == other.maxCompletionTokens && model == other.model && output == other.output && seed == other.seed && temperature == other.temperature && topP == other.topP && usage == other.usage && additionalProperties == other.additionalProperties /* spotless:on */
        }