Class: TD::Types::Update::MessageEdited
- Inherits:
-
TD::Types::Update
- Object
- Dry::Struct
- Base
- TD::Types::Update
- TD::Types::Update::MessageEdited
- Defined in:
- lib/tdlib/types/update/message_edited.rb
Overview
A message was edited. Changes in the message content will come in a separate updateMessageContent.
Instance Attribute Summary collapse
-
#chat_id ⇒ Integer
Chat identifier.
-
#edit_date ⇒ Integer
Point in time (Unix timestamp) when the message was edited.
-
#message_id ⇒ Integer
Message identifier.
-
#reply_markup ⇒ TD::Types::ReplyMarkup?
New message reply markup; may be null.
Method Summary
Methods inherited from Base
Instance Attribute Details
#chat_id ⇒ Integer
Chat identifier.
9 10 11 |
# File 'lib/tdlib/types/update/message_edited.rb', line 9 def chat_id @chat_id end |
#edit_date ⇒ Integer
Point in time (Unix timestamp) when the message was edited.
9 10 11 |
# File 'lib/tdlib/types/update/message_edited.rb', line 9 def edit_date @edit_date end |
#message_id ⇒ Integer
Message identifier.
9 10 11 |
# File 'lib/tdlib/types/update/message_edited.rb', line 9 def @message_id end |
#reply_markup ⇒ TD::Types::ReplyMarkup?
New message reply markup; may be null.
9 10 11 |
# File 'lib/tdlib/types/update/message_edited.rb', line 9 def reply_markup @reply_markup end |