override fun equals()

in anthropic-java-core/src/main/kotlin/com/anthropic/models/messages/ToolUseBlockParam.kt [281:287]


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

        return /* spotless:off */ other is ToolUseBlockParam && id == other.id && input == other.input && name == other.name && type == other.type && cacheControl == other.cacheControl && additionalProperties == other.additionalProperties /* spotless:on */
    }