Sha256: 91f4cc079614f6c20522c224b41560a377127c537c8c18227be674fac134cd6f

Contents?: true

Size: 726 Bytes

Versions: 3

Compression:

Stored size: 726 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::Coercible::Integer
    attribute :message_ids, TD::Types::Array.of(TD::Types::Coercible::Integer)
    attribute :is_permanent, TD::Types::Bool
    attribute :from_cache, TD::Types::Bool
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.4 lib/tdlib/types/update/delete_messages.rb
tdlib-schema-1.7.0.3 lib/tdlib/types/update/delete_messages.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/update/delete_messages.rb