Sha256: ce0fc760fd0f5f4dd90eeaad7fe29b4db95af153ee2393c9aa82ec8182dbfc39
Contents?: true
Size: 516 Bytes
Versions: 3
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
3 entries across 3 versions & 1 rubygems