SimpleRendering

@Serializable
data class SimpleRendering(val logo: Logo? = null, val backgroundColor: String? = null, val textColor: String? = null)(source)

The simple rendering method is intended for use in applications that do not support SVG rendering.

Constructors

Link copied to clipboard
constructor(logo: Logo? = null, backgroundColor: String? = null, textColor: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "background_color")
val backgroundColor: String? = null

OPTIONAL. An RGB color value as defined in (W3C.CSS-COLOR) for the background of the credential.

Link copied to clipboard
@SerialName(value = "logo")
val logo: Logo? = null

OPTIONAL. An object containing information about the logo to be displayed for the type,

Link copied to clipboard
@SerialName(value = "text_color")
val textColor: String? = null

OPTIONAL. An RGB color value as defined in (W3C.CSS-COLOR) for the text of the credential.