Class: TD::Types::InputMessageReplyTo::ExternalMessage
- Inherits:
-
TD::Types::InputMessageReplyTo
- Object
- Dry::Struct
- Base
- TD::Types::InputMessageReplyTo
- TD::Types::InputMessageReplyTo::ExternalMessage
- Defined in:
- lib/tdlib/types/input_message_reply_to/external_message.rb
Overview
Describes a message to be replied that is from a different chat or a forum topic; not supported in secret chats.
Instance Attribute Summary collapse
-
#chat_id ⇒ Integer
The identifier of the chat to which the message to be replied belongs.
-
#message_id ⇒ Integer
The identifier of the message to be replied in the specified chat.
-
#quote ⇒ TD::Types::InputTextQuote
Quote from the message to be replied; pass null if none.
Method Summary
Methods inherited from Base
Instance Attribute Details
#chat_id ⇒ Integer
The identifier of the chat to which the message to be replied belongs.
8 9 10 |
# File 'lib/tdlib/types/input_message_reply_to/external_message.rb', line 8 def chat_id @chat_id end |
#message_id ⇒ Integer
The identifier of the message to be replied in the specified chat. A message can be replied in another chat or forum topic only if messageProperties.can_be_replied_in_another_chat.
8 9 10 |
# File 'lib/tdlib/types/input_message_reply_to/external_message.rb', line 8 def @message_id end |
#quote ⇒ TD::Types::InputTextQuote
Quote from the message to be replied; pass null if none.
8 9 10 |
# File 'lib/tdlib/types/input_message_reply_to/external_message.rb', line 8 def quote @quote end |