override fun equals()

in openai-java-core/src/main/kotlin/com/openai/models/responses/ResponseItem.kt [255:261]


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

        return /* spotless:off */ other is ResponseItem && responseInputMessageItem == other.responseInputMessageItem && responseOutputMessage == other.responseOutputMessage && fileSearchCall == other.fileSearchCall && computerCall == other.computerCall && computerCallOutput == other.computerCallOutput && webSearchCall == other.webSearchCall && functionCall == other.functionCall && functionCallOutput == other.functionCallOutput /* spotless:on */
    }