Sha256: d7ba1c1badb5258a540a3ab84b21ccbae5578818d8db0c5f7ec321ee2157bbbf

Contents?: true

Size: 704 Bytes

Versions: 3

Compression:

Stored size: 704 Bytes

Contents

module TD::Types
  # Some messages were deleted.
  #
  # @attr chat_id [Integer] Chat identifier.
  # @attr message_ids [Array<Integer>] Identifiers of the deleted messages.
  # @attr is_permanent [Boolean] True, if the messages are permanently deleted by a user (as opposed to just becoming
  #   inaccessible).
  # @attr from_cache [Boolean] True, if the messages are deleted only from the cache and can possibly be retrieved
  #   again in the future.
  class Update::DeleteMessages < Update
    attribute :chat_id, TD::Types::Integer
    attribute :message_ids, TD::Types::Array.of(TD::Types::Integer)
    attribute :is_permanent, TD::Types::Bool
    attribute :from_cache, TD::Types::Bool
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/update/delete_messages.rb
tdlib-ruby-2.2.0 lib/tdlib/types/update/delete_messages.rb
tdlib-ruby-2.1.0 lib/tdlib/types/update/delete_messages.rb