Fonts

data class Fonts(val regular: Fonts.Regular? = null) : Parcelable

A model representing all fonts that can be passed to the SPA for use. See the contents of Regular for specifics. Note: Fonts included here are not used by native components.

Constructors

Link copied to clipboard
constructor(regular: Fonts.Regular? = null)

Types

Link copied to clipboard
data class Regular(val family: String? = null, val url: String? = null) : Parcelable

Wrapper model to include all types of fonts that can be provided

Properties

Link copied to clipboard
@SerializedName(value = "regular")
val regular: Fonts.Regular? = null