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