--- title: messages.botCallbackAnswer description: Bot callback answer image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: messages.botCallbackAnswer [Back to constructors index](index.md) Bot callback answer ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |alert|[Bool](../types/Bool.md) | Optional|Alert?| |message|[string](../types/string.md) | Optional|Message| ### Type: [messages\_BotCallbackAnswer](../types/messages_BotCallbackAnswer.md) ### Example: ```php $messages_botCallbackAnswer = ['_' => 'messages.botCallbackAnswer', 'alert' => Bool, 'message' => 'string']; ``` Or, if you're into Lua: ```lua messages_botCallbackAnswer={_='messages.botCallbackAnswer', alert=Bool, message='string'} ```