Package-level declarations

Types

Link copied to clipboard
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.

Link copied to clipboard
data class Colors(val primary: String? = null, val primaryVariant: String? = null, val onPrimary: String? = null, val secondary: String? = null, val onSecondary: String? = null, val background: String? = null, val onBackground: String? = null, val surface: String? = null, val surfaceVariant: String? = null, val onSurface: String? = null, val onSurfaceFocus: String? = null, val error: String? = null, val onError: String? = null) : Parcelable

Model representing all colours included in the Sensibill Theme used by the SPA.

Link copied to clipboard
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.

Link copied to clipboard
data class ReceiptUpdateEvent(val receiptId: String, val event: String)