Sha256: ce0fc760fd0f5f4dd90eeaad7fe29b4db95af153ee2393c9aa82ec8182dbfc39
Contents?: true
Size: 516 Bytes
Versions: 2
Compression:
Stored size: 516 Bytes
Contents
module TD::Types # An animation message (GIF-style).. # # @attr animation [TD::Types::Animation, nil] Message content; may be null. # @attr caption [TD::Types::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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.3 | lib/tdlib/types/push_message_content/animation.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/push_message_content/animation.rb |