data class Symbol
Symbol database entity.
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 |
<init> |
Symbol database entity. Symbol(id: String, symbol: String, name: String, type: Type) |
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 |