Sha256: 2a81336b051915da0f014ad1f9756dfe03117595865eaa8f5e11212a4a7d11d7

Contents?: true

Size: 490 Bytes

Versions: 5

Compression:

Stored size: 490 Bytes

Contents

module TD::Types
  # An animation.
  #
  # @attr animation [TD::Types::Animation, nil] Animation file; may be null.
  # @attr caption [TD::Types::PageBlockCaption] 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::PageBlockCaption
    attribute :need_autoplay, TD::Types::Bool
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.3 lib/tdlib/types/page_block/animation.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/page_block/animation.rb
tdlib-schema-1.7.0.1 lib/tdlib/types/page_block/animation.rb
tdlib-ruby-2.2.0 lib/tdlib/types/page_block/animation.rb
tdlib-ruby-2.1.0 lib/tdlib/types/page_block/animation.rb