Contact

data class Contact(    val name: String,     val type: Contact.Type,     val number: String?,     val label: Contact.Label?,     val profileImgUrl: String?,     val message: Contact.Message?,     val time: String?,     val numInMessageHistory: String?,     val token: String?,     val score: String?)

Constructors

Link copied to clipboard
fun Contact(    name: String,     type: Contact.Type,     number: String?,     label: Contact.Label?,     profileImgUrl: String?,     message: Contact.Message?,     time: String?,     numInMessageHistory: String?,     token: String?,     score: String?)

Types

Link copied to clipboard
enum Label : Enum<Contact.Label>
Link copied to clipboard
data class Message(val text: String, val type: Contact.Message.Type?)
Link copied to clipboard
enum Type : Enum<Contact.Type>

Functions

Link copied to clipboard
fun toJson(): JsonElement

Properties

Link copied to clipboard
@SerializedName(value = "label")
val label: Contact.Label?
Link copied to clipboard
@SerializedName(value = "message")
val message: Contact.Message?
Link copied to clipboard
@SerializedName(value = "name")
val name: String
Link copied to clipboard
@SerializedName(value = "number")
val number: String?
Link copied to clipboard
@SerializedName(value = "numInMessageHistory")
val numInMessageHistory: String?
Link copied to clipboard
@SerializedName(value = "profileImgUrl")
val profileImgUrl: String?
Link copied to clipboard
@SerializedName(value = "score")
val score: String?
Link copied to clipboard
@SerializedName(value = "time")
val time: String?
Link copied to clipboard
@SerializedName(value = "token")
val token: String?
Link copied to clipboard
@SerializedName(value = "type")
val type: Contact.Type