class

Tourmaline::InlineQueryResultContact

Inherits JSON::Serializable / Reference / Object

Represents a contact with a phone number. By default, this contact will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the contact. Note: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.

Constructors

new(id : String, phone_number : String, first_name : String, type : String = "contact", last_name : String | Nil = nil, vcard : String | Nil = nil, reply_markup : Tourmaline::InlineKeyboardMarkup | Nil = nil, input_message_content : Tourmaline::InputMessageContent | Nil = nil, thumbnail_url : String | Nil = nil, thumbnail_width : Int32 | Int64 | Nil = nil, thumbnail_height : Int32 | Int64 | Nil = nil)
Source
new(*, __pull_for_json_serializable pull : JSON::PullParser)
Source

Instance methods

first_name

Contact's first name

Source
first_name=(first_name : String)

Contact's first name

Source
id

Unique identifier for this result, 1-64 Bytes

Source
id=(id : String)

Unique identifier for this result, 1-64 Bytes

Source
input_message_content

Optional. Content of the message to be sent instead of the contact

Source
input_message_content=(input_message_content : Tourmaline::InputMessageContent | Nil)

Optional. Content of the message to be sent instead of the contact

Source
last_name

Optional. Contact's last name

Source
last_name=(last_name : String | Nil)

Optional. Contact's last name

Source
phone_number

Contact's phone number

Source
phone_number=(phone_number : String)

Contact's phone number

Source
reply_markup

Optional. Inline keyboard attached to the message

Source
reply_markup=(reply_markup : Tourmaline::InlineKeyboardMarkup | Nil)

Optional. Inline keyboard attached to the message

Source
thumbnail_height

Optional. Thumbnail height

Source
thumbnail_height=(thumbnail_height : Int32 | Int64 | Nil)

Optional. Thumbnail height

Source
thumbnail_url

Optional. Url of the thumbnail for the result

Source
thumbnail_url=(thumbnail_url : String | Nil)

Optional. Url of the thumbnail for the result

Source
thumbnail_width

Optional. Thumbnail width

Source
thumbnail_width=(thumbnail_width : Int32 | Int64 | Nil)

Optional. Thumbnail width

Source
type

Type of the result, must be contact

Source
type=(type : String)

Type of the result, must be contact

Source
vcard

Optional. Additional data about the contact in the form of a vCard, 0-2048 bytes

Source
vcard=(vcard : String | Nil)

Optional. Additional data about the contact in the form of a vCard, 0-2048 bytes

Source