mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
Update AnswerInlineQuery
This commit is contained in:
parent
76bd14b814
commit
01b85fe806
1 changed files with 3 additions and 10 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
use serde::Serialize;
|
||||
|
||||
use crate::types::{InlineQueryResult, True};
|
||||
use crate::types::{InlineQueryResult, InlineQueryResultsButton, True};
|
||||
|
||||
impl_payload! {
|
||||
/// Use this method to send answers to an inline query. On success, _True_ is returned. No more than **50** results per query are allowed.
|
||||
|
@ -21,15 +21,8 @@ impl_payload! {
|
|||
pub is_personal: bool,
|
||||
/// Pass the offset that a client should send in the next query with the same text to receive more results. Pass an empty string if there are no more results or if you don't support pagination. Offset length can't exceed 64 bytes.
|
||||
pub next_offset: String [into],
|
||||
/// If passed, clients will display a button with specified text that switches the user to a private chat with the bot and sends the bot a start message with the parameter switch_pm_parameter
|
||||
pub switch_pm_text: String [into],
|
||||
/// [Deep-linking] parameter for the /start message sent to the bot when user presses the switch button. 1-64 characters, only `A-Z`, `a-z`, `0-9`, `_` and `-` are allowed.
|
||||
///
|
||||
/// _Example_: An inline bot that sends YouTube videos can ask the user to connect the bot to their YouTube account to adapt search results accordingly. To do this, it displays a 'Connect your YouTube account' button above the results, or even before showing any. The user presses the button, switches to a private chat with the bot and, in doing so, passes a start parameter that instructs the bot to return an oauth link. Once done, the bot can offer a [switch_inline] button so that the user can easily return to the chat where they wanted to use the bot's inline capabilities.
|
||||
///
|
||||
/// [Deep-linking]: https://core.telegram.org/bots#deep-linking
|
||||
/// [switch_inline]: https://core.telegram.org/bots/api#inlinekeyboardmarkup
|
||||
pub switch_pm_parameter: String [into],
|
||||
/// A JSON-serialized object describing a button to be shown above inline query results
|
||||
pub button: InlineQueryResultsButton,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue