override fun equals()

in anthropic-java-core/src/main/kotlin/com/anthropic/models/ErrorObject.kt [208:214]


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

        return /* spotless:off */ other is ErrorObject && invalidRequestError == other.invalidRequestError && authenticationError == other.authenticationError && billingError == other.billingError && permissionError == other.permissionError && notFoundError == other.notFoundError && rateLimitError == other.rateLimitError && gatewayTimeoutError == other.gatewayTimeoutError && api == other.api && overloadedError == other.overloadedError /* spotless:on */
    }