Sha256: 675225c91bcb698559da81f24555706f079f7964cc379ba58e04cfff1448b2d8
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
module TD::Types # Represents a link to a WEBP or a TGS sticker. # # @attr id [String] Unique identifier of the query result. # @attr thumbnail_url [String] URL of the sticker thumbnail, if it exists. # @attr sticker_url [String] The URL of the WEBP or a TGS sticker (sticker file size must not exceed 5MB). # @attr sticker_width [Integer] Width of the sticker. # @attr sticker_height [Integer] Height of the sticker. # @attr reply_markup [TD::Types::ReplyMarkup] The message reply markup. # Must be of type {TD::Types::ReplyMarkup::InlineKeyboard} or null. # @attr input_message_content [TD::Types::InputMessageContent] The content of the message to be sent. # Must be one of the following types: InputMessageText, inputMessageSticker, InputMessageLocation, # InputMessageVenue or InputMessageContact. class InputInlineQueryResult::Sticker < InputInlineQueryResult attribute :id, TD::Types::String attribute :thumbnail_url, TD::Types::String attribute :sticker_url, TD::Types::String attribute :sticker_width, TD::Types::Integer attribute :sticker_height, TD::Types::Integer attribute :reply_markup, TD::Types::ReplyMarkup attribute :input_message_content, TD::Types::InputMessageContent end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-ruby-2.1.0 | lib/tdlib/types/input_inline_query_result/sticker.rb |