Sha256: 7ccaa36cfec3e9156c9cdce6ed8e58020bbe64be1cd9931c992440363fc5eae3

Contents?: true

Size: 505 Bytes

Versions: 3

Compression:

Stored size: 505 Bytes

Contents

module TD::Types
  # An animation message (GIF-style)..
  #
  # @attr animation [TD::Types::Animation, nil] Message content; may be null.
  # @attr caption [String] Animation caption.
  # @attr is_pinned [Boolean] True, if the message is a pinned message with the specified content.
  class PushMessageContent::Animation < PushMessageContent
    attribute :animation, TD::Types::Animation.optional.default(nil)
    attribute :caption, TD::Types::String
    attribute :is_pinned, TD::Types::Bool
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/push_message_content/animation.rb
tdlib-ruby-2.2.0 lib/tdlib/types/push_message_content/animation.rb
tdlib-ruby-2.1.0 lib/tdlib/types/push_message_content/animation.rb