override fun equals()

in anthropic-java-core/src/main/kotlin/com/anthropic/models/beta/messages/BetaToolUnion.kt [214:220]


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

        return /* spotless:off */ other is BetaToolUnion && betaTool == other.betaTool && computerUse20241022 == other.computerUse20241022 && bash20241022 == other.bash20241022 && textEditor20241022 == other.textEditor20241022 && computerUse20250124 == other.computerUse20250124 && bash20250124 == other.bash20250124 && textEditor20250124 == other.textEditor20250124 && webSearchTool20250305 == other.webSearchTool20250305 /* spotless:on */
    }