pub enum KeyboardbuttonAction {
RequestContact {
request_contact: bool,
},
RequestLocation {
request_location: bool,
},
RequestPoll {
request_poll: KeyboardButtonPollType,
},
WebApp {
web_app: WebAppInfo,
},
}Expand description
The action to be performed when a keyboard button is pressed.
Note: request_contact and request_location options will only work in Telegram versions released after 9 April, 2016. Older clients will display unsupported message.
Note: request_poll option will only work in Telegram versions released after 23 January, 2020. Older clients will display unsupported message.
Note: web_app option will only work in Telegram versions released after 16 April, 2022. Older clients will display unsupported message.
Variants§
RequestContact
If True, the user’s phone number will be sent as a contact when the button is pressed. Available in private chats only.
Fields
RequestLocation
If True, the user’s current location will be sent when the button is pressed. Available in private chats only.
Fields
RequestPoll
If specified, the user will be asked to create a poll and send it to the bot when the button is pressed. Available in private chats only.
Fields
request_poll: KeyboardButtonPollTypeIf specified, the user will be asked to create a poll and send it to the bot when the button is pressed. Available in private chats only.
WebApp
If specified, the described Web App will be launched when the button is pressed. The Web App will be able to send a “web_app_data” service message. Available in private chats only.
Fields
web_app: WebAppInfoIf specified, the described Web App will be launched when the button is pressed. The Web App will be able to send a “web_app_data” service message. Available in private chats only.