data class Contact : CommonContactData
(source)
(common)
<init> |
Contact(phoneNumber: String, firstName: String, lastName: String? = null, userId: UserId? = null, vcard: String? = null) |
(common)
firstName |
val firstName: String |
(common)
lastName |
val lastName: String? |
(common)
phoneNumber |
val phoneNumber: String |
(common)
userId |
val userId: UserId? |
(common)
vcard |
val vcard: String? |
(common)
toRequest |
fun Contact.toRequest(chatId: ChatIdentifier, disableNotification: Boolean = false, replyToMessageId: MessageIdentifier? = null, replyMarkup: KeyboardMarkup? = null): SendContact |