TypedPhoneNumber

data class TypedPhoneNumber(val phoneNumber: String, val type: Int)

TypedPhoneNumber is a pair value phoneNumber and a type. type shall be a value from the list provided by Android, see ContactsContract.CommonDataKinds.Phone.TYPE_HOME.

Constructors

Link copied to clipboard
fun TypedPhoneNumber(phoneNumber: String, type: Int)

Properties

Link copied to clipboard
val phoneNumber: String
Link copied to clipboard
val type: Int