Sha256: 42c90e73654dd2749888262b52d647c6119ac83e21b0207abaf3f51e09428b0d
Contents?: true
Size: 612 Bytes
Versions: 1
Compression:
Stored size: 612 Bytes
Contents
# frozen_string_literal: true module Telegram module Bot module Types class InlineQueryResultContact < Base attribute :type, String.default('contact') attribute :id, String attribute :phone_number, String attribute :first_name, String attribute :last_name, String attribute :vcard, String attribute :reply_markup, InlineKeyboardMarkup attribute :input_message_content, InputMessageContent attribute :thumb_url, String attribute :thumb_width, Integer attribute :thumb_height, Integer end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
telegram-bot-types-0.7.0 | lib/telegram/bot/types/inline_query_result_contact.rb |