Sha256: a2645dc00f866c7402b8e6b04b0b68b5accf2de673676c964fc878bfb6ab5be4
Contents?: true
Size: 645 Bytes
Versions: 1
Compression:
Stored size: 645 Bytes
Contents
module TD::Types # A sticker message. # # @attr sticker [TD::Types::InputFile] Sticker to be sent. # @attr thumbnail [TD::Types::InputThumbnail, nil] Sticker thumbnail, if available. # @attr width [Integer] Sticker width. # @attr height [Integer] Sticker height. # @attr emoji [String] Emoji used to choose the sticker. class InputMessageContent::Sticker < InputMessageContent attribute :sticker, TD::Types::InputFile attribute :thumbnail, TD::Types::InputThumbnail.optional.default(nil) attribute :width, TD::Types::Integer attribute :height, TD::Types::Integer attribute :emoji, TD::Types::String end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/input_message_content/sticker.rb |