Sha256: a340541a91759bb161b29e02e4494e8034a7ab33d1a83cf9a449417432b40269
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
module TD::Types # Represents a link to a WEBP 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 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::InlineKeyboard, nil] The message reply markup. # @attr input_message_content [TD::Types::InputMessageContent::Text, TD::Types::InputMessageContent::Sticker, # TD::Types::InputMessageContent::Location, TD::Types::InputMessageContent::Venue, # TD::Types::InputMessageContent::Contact] The content of the message to be sent. 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.0.0 | lib/tdlib/types/input_inline_query_result/sticker.rb |