Sha256: a0766868621b05700ea39953e49ff12bcf228a3e9f0db35dcc67a39397d0d0cf
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
module TD::Types # An animation message (GIF-style).. # # @attr animation [TD::Types::InputFile] Animation file to be sent. # @attr thumbnail [TD::Types::InputThumbnail, nil] Animation thumbnail, if available. # @attr added_sticker_file_ids [Array<Integer>] File identifiers of the stickers added to the animation, if # applicable. # @attr duration [Integer] Duration of the animation, in seconds. # @attr width [Integer] Width of the animation; may be replaced by the server. # @attr height [Integer] Height of the animation; may be replaced by the server. # @attr caption [TD::Types::FormattedText] Animation caption; 0-GetOption("message_caption_length_max") characters. class InputMessageContent::Animation < InputMessageContent attribute :animation, TD::Types::InputFile attribute :thumbnail, TD::Types::InputThumbnail.optional.default(nil) attribute :added_sticker_file_ids, TD::Types::Array.of(TD::Types::Integer) attribute :duration, TD::Types::Integer attribute :width, TD::Types::Integer attribute :height, TD::Types::Integer attribute :caption, TD::Types::FormattedText 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/animation.rb |