in anthropic-java-core/src/main/kotlin/com/anthropic/models/messages/Usage.kt [377:383]
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is Usage && cacheCreationInputTokens == other.cacheCreationInputTokens && cacheReadInputTokens == other.cacheReadInputTokens && inputTokens == other.inputTokens && outputTokens == other.outputTokens && serverToolUse == other.serverToolUse && additionalProperties == other.additionalProperties /* spotless:on */
}