Sha256: ef17c2127607523bb5720d43d9004988ac36fb855d91c2f7e461f74a10b91f68

Contents?: true

Size: 704 Bytes

Versions: 1

Compression:

Stored size: 704 Bytes

Contents

module TD::Types
  # A media album.
  #
  # @attr total_count [Integer] Number of messages in the album.
  # @attr has_photos [Boolean] True, if the album has at least one photo.
  # @attr has_videos [Boolean] True, if the album has at least one video.
  # @attr has_audios [Boolean] True, if the album has at least one audio file.
  # @attr has_documents [Boolean] True, if the album has at least one document.
  class PushMessageContent::MediaAlbum < PushMessageContent
    attribute :total_count, TD::Types::Integer
    attribute :has_photos, TD::Types::Bool
    attribute :has_videos, TD::Types::Bool
    attribute :has_audios, TD::Types::Bool
    attribute :has_documents, TD::Types::Bool
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/push_message_content/media_album.rb