you could make your data class into an AutoValue c...
# announcements
k
you could make your data class into an AutoValue class and use the redacted extension. Alternatively you could make yourself a wrapper for sensitive strings?
Copy code
data class RedactedString(val value: String) {
    override fun toString() = "redacted"
}