Sha256: c4acccd3423a16c0c522467aba56a18664aecfcb84b8d772890cbdc94eeb9c9f

Contents?: true

Size: 474 Bytes

Versions: 1

Compression:

Stored size: 474 Bytes

Contents

module TD::Types
  # An animation.
  #
  # @attr animation [TD::Types::Animation, nil] Animation file; may be null.
  # @attr caption [TD::Types::RichText] Animation caption.
  # @attr need_autoplay [Boolean] True, if the animation should be played automatically.
  class PageBlock::Animation < PageBlock
    attribute :animation, TD::Types::Animation.optional.default(nil)
    attribute :caption, TD::Types::RichText
    attribute :need_autoplay, TD::Types::Bool
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-ruby-2.0.0 lib/tdlib/types/page_block/animation.rb