override fun equals()

in anthropic-java-core/src/main/kotlin/com/anthropic/models/beta/messages/BetaBase64PdfBlock.kt [655:661]


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

        return /* spotless:off */ other is BetaBase64PdfBlock && source == other.source && type == other.type && cacheControl == other.cacheControl && citations == other.citations && context == other.context && title == other.title && additionalProperties == other.additionalProperties /* spotless:on */
    }