Sha256: 5388e2bd6ec7ad6798eac9d86fc2b284dd3936e47a327dc5da09438988c81c9a

Contents?: true

Size: 536 Bytes

Versions: 3

Compression:

Stored size: 536 Bytes

Contents

module TD::Types
  # A video note message.
  #
  # @attr video_note [TD::Types::VideoNote] Message content.
  # @attr is_viewed [Boolean] True, if at least one of the recipients has viewed the video note.
  # @attr is_secret [Boolean] True, if the video note thumbnail must be blurred and the video note must be shown only
  #   while tapped.
  class MessageContent::VideoNote < MessageContent
    attribute :video_note, TD::Types::VideoNote
    attribute :is_viewed, TD::Types::Bool
    attribute :is_secret, TD::Types::Bool
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/message_content/video_note.rb
tdlib-ruby-2.1.0 lib/tdlib/types/message_content/video_note.rb
tdlib-ruby-2.0.0 lib/tdlib/types/message_content/video_note.rb