override fun equals()

in anthropic-java-core/src/main/kotlin/com/anthropic/models/messages/ServerToolUseBlockParam.kt [285:291]


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

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