in anthropic-java-core/src/main/kotlin/com/anthropic/models/messages/WebSearchResultBlockParam.kt [299:305]
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is WebSearchResultBlockParam && encryptedContent == other.encryptedContent && title == other.title && type == other.type && url == other.url && pageAge == other.pageAge && additionalProperties == other.additionalProperties /* spotless:on */
}