override fun equals()

in anthropic-java-core/src/main/kotlin/com/anthropic/models/messages/batches/MessageBatchRequestCounts.kt [322:328]


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

        return /* spotless:off */ other is MessageBatchRequestCounts && canceled == other.canceled && errored == other.errored && expired == other.expired && processing == other.processing && succeeded == other.succeeded && additionalProperties == other.additionalProperties /* spotless:on */
    }