override fun equals()

in openai-java-core/src/main/kotlin/com/openai/models/beta/threads/runs/steps/StepListParams.kt [470:476]


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

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