override fun equals()

in anthropic-java-core/src/main/kotlin/com/anthropic/models/messages/MessageDeltaUsage.kt [387:393]


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

        return /* spotless:off */ other is MessageDeltaUsage && cacheCreationInputTokens == other.cacheCreationInputTokens && cacheReadInputTokens == other.cacheReadInputTokens && inputTokens == other.inputTokens && outputTokens == other.outputTokens && serverToolUse == other.serverToolUse && additionalProperties == other.additionalProperties /* spotless:on */
    }