Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 670 Bytes

InputContactMessageContent.md

File metadata and controls

24 lines (18 loc) · 670 Bytes

TelegramBotOpenapi::InputContactMessageContent

Properties

Name Type Description Notes
phone_number String Contact's phone number
first_name String Contact's first name
last_name String Optional. Contact's last name [optional]
vcard String Optional. Additional data about the contact in the form of a vCard, 0-2048 bytes [optional]

Example

require 'telegram-bot-openapi'

instance = TelegramBotOpenapi::InputContactMessageContent.new(
  phone_number: null,
  first_name: null,
  last_name: null,
  vcard: null
)