class
TelegramBot::ReplyParameters
- TelegramBot::ReplyParameters
- Reference
- Object
Included Modules
- JSON::Serializable
Defined in:
telegram_bot/types/reply_parameters.crConstructors
- .new(pull : JSON::PullParser)
- .new(message_id : Int32, *, chat_id : Int64 | String | Nil = nil, allow_sending_without_reply : Bool | Nil = nil, quote : Nil | String = nil, quote_parse_mode : Nil | String = nil, quote_entities : Nil | Array(TelegramBot::MessageEntity) = nil, quote_position : Int32 | Nil = nil, checklist_task_id : Int32 | Nil = nil, poll_option_id : Nil | String = nil)
- .new(*, __pull_for_json_serializable pull : JSON::PullParser)
Instance Method Summary
- #allow_sending_without_reply=(allow_sending_without_reply : Bool | Nil)
- #allow_sending_without_reply? : Bool | Nil
- #chat_id : Int64 | String | Nil
- #chat_id=(chat_id : Int64 | String | Nil)
- #checklist_task_id : Int32 | Nil
- #checklist_task_id=(checklist_task_id : Int32 | Nil)
- #message_id : Int32
- #message_id=(message_id : Int32)
- #poll_option_id : String | Nil
- #poll_option_id=(poll_option_id : String | Nil)
- #quote : String | Nil
- #quote=(quote : String | Nil)
- #quote_entities : Array(MessageEntity) | Nil
- #quote_entities=(quote_entities : Array(MessageEntity) | Nil)
- #quote_parse_mode : String | Nil
- #quote_parse_mode=(quote_parse_mode : String | Nil)
- #quote_position : Int32 | Nil
- #quote_position=(quote_position : Int32 | Nil)
Constructor Detail
def self.new(message_id : Int32, *, chat_id : Int64 | String | Nil = nil, allow_sending_without_reply : Bool | Nil = nil, quote : Nil | String = nil, quote_parse_mode : Nil | String = nil, quote_entities : Nil | Array(TelegramBot::MessageEntity) = nil, quote_position : Int32 | Nil = nil, checklist_task_id : Int32 | Nil = nil, poll_option_id : Nil | String = nil)
#