Chip

data class Chip(    val type: Chip.Type,     val text: String,     val token: String?)

Constructors

Link copied to clipboard
fun Chip(    type: Chip.Type,     text: String,     token: String?)

Types

Link copied to clipboard
enum Type : Enum<Chip.Type>

Properties

Link copied to clipboard
@SerializedName(value = "text")
val text: String
Link copied to clipboard
@SerializedName(value = "token")
val token: String?
Link copied to clipboard
@SerializedName(value = "type")
val type: Chip.Type