override fun equals()

in openai-java-core/src/main/kotlin/com/openai/models/beta/threads/messages/MessageListParams.kt [431:437]


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

        return /* spotless:off */ other is MessageListParams && threadId == other.threadId && after == other.after && before == other.before && limit == other.limit && order == other.order && runId == other.runId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */
    }