app / de.uniks.codliners.stock_simulator.domain / Symbol

Symbol

data class Symbol

Symbol database entity.

Types

Filter

Utility class used for filtering Symbols.

data class Filter

Type

Enumeration class for the Type of a Symbol. The possible types of a transaction are SHARE and CRYPTO.

enum class Type : Parcelable

Constructors

<init>

Symbol database entity.

Symbol(id: String, symbol: String, name: String, type: Type)

Properties

id

The id of the asset.

val id: String

name

The name of the asset.

val name: String

symbol

The symbol of the asset.

val symbol: String

type

The asset's type.

val type: Type