override fun equals()

in aws-runtime/aws-config/common/src/aws/sdk/kotlin/runtime/config/imds/Token.kt [12:22]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (other == null || this::class != other::class) return false

        other as Token

        if (!value.contentEquals(other.value)) return false
        if (expires != other.expires) return false

        return true
    }