Class: TD::Types::Update::DeleteMessages
- Inherits:
-
TD::Types::Update
- Object
- Dry::Struct
- Base
- TD::Types::Update
- TD::Types::Update::DeleteMessages
- Defined in:
- lib/tdlib/types/update/delete_messages.rb
Overview
Some messages were deleted.
Instance Attribute Summary collapse
-
#chat_id ⇒ Integer
Chat identifier.
-
#from_cache ⇒ Boolean
True, if the messages are deleted only from the cache and can possibly be retrieved again in the future.
-
#is_permanent ⇒ Boolean
True, if the messages are permanently deleted by a user (as opposed to just becoming inaccessible).
-
#message_ids ⇒ Array<Integer>
Identifiers of the deleted messages.
Method Summary
Methods inherited from Base
Instance Attribute Details
#chat_id ⇒ Integer
Chat identifier.
10 11 12 |
# File 'lib/tdlib/types/update/delete_messages.rb', line 10 def chat_id @chat_id end |
#from_cache ⇒ Boolean
True, if the messages are deleted only from the cache and can possibly be retrieved again in the future.
10 11 12 |
# File 'lib/tdlib/types/update/delete_messages.rb', line 10 def from_cache @from_cache end |
#is_permanent ⇒ Boolean
True, if the messages are permanently deleted by a user (as opposed to just becoming inaccessible).
10 11 12 |
# File 'lib/tdlib/types/update/delete_messages.rb', line 10 def is_permanent @is_permanent end |
#message_ids ⇒ Array<Integer>
Identifiers of the deleted messages.
10 11 12 |
# File 'lib/tdlib/types/update/delete_messages.rb', line 10 def @message_ids end |