Skip to content

class Tourmaline::InlineQueryResultContact
inherits Reference #

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.

Included modules

JSON::Serializable

Constructors#

.new(id, phone_number, first_name, type = "contact", last_name : String? = nil, vcard : String? = nil, reply_markup : Tourmaline::InlineKeyboardMarkup? = nil, input_message_content : Tourmaline::InputMessageContent? = nil, thumbnail_url : String? = nil, thumbnail_width : Int32 | Int64 | Nil = nil, thumbnail_height : Int32 | Int64 | Nil = nil) #

View source

.new(pull : JSON::PullParser) #

View source

Methods#

#first_name : String #

Contact's first name

View source

#first_name=(first_name : String) #

Contact's first name

View source

#id : String #

Unique identifier for this result, 1-64 Bytes

View source

#id=(id : String) #

Unique identifier for this result, 1-64 Bytes

View source

#input_message_content : Tourmaline::InputMessageContent? #

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

View source

#input_message_content=(input_message_content : Tourmaline::InputMessageContent?) #

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

View source

#last_name : String? #

Optional. Contact's last name

View source

#last_name=(last_name : String?) #

Optional. Contact's last name

View source

#phone_number : String #

Contact's phone number

View source

#phone_number=(phone_number : String) #

Contact's phone number

View source

#reply_markup : Tourmaline::InlineKeyboardMarkup? #

Optional. Inline keyboard attached to the message

View source

#reply_markup=(reply_markup : Tourmaline::InlineKeyboardMarkup?) #

Optional. Inline keyboard attached to the message

View source

#thumbnail_height : Int32 | Int64 | Nil #

Optional. Thumbnail height

View source

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

Optional. Thumbnail height

View source

#thumbnail_url : String? #

Optional. Url of the thumbnail for the result

View source

#thumbnail_url=(thumbnail_url : String?) #

Optional. Url of the thumbnail for the result

View source

#thumbnail_width : Int32 | Int64 | Nil #

Optional. Thumbnail width

View source

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

Optional. Thumbnail width

View source

#type : String #

Type of the result, must be contact

View source

#type=(type : String) #

Type of the result, must be contact

View source

#vcard : String? #

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

View source

#vcard=(vcard : String?) #

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

View source