Brand

data class Brand(val fonts: Fonts? = null, val colors: Colors? = null) : Parcelable

A model including all information required to fully configure the SPA. Further configuration on top of what is included here is possibly by request.

Constructors

Link copied to clipboard
constructor(fonts: Fonts? = null, colors: Colors? = null)

Properties

Link copied to clipboard
@SerializedName(value = "colors")
val colors: Colors? = null
Link copied to clipboard
@SerializedName(value = "fonts")
val fonts: Fonts? = null