986 B
986 B
title | description | image |
---|---|---|
updateBotWebhookJSONQuery | updateBotWebhookJSONQuery attributes, type and example | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: updateBotWebhookJSONQuery
Attributes:
Name | Type | Required |
---|---|---|
query_id | long | Yes |
data | DataJSON | Yes |
timeout | int | Yes |
Type: Update
Example:
$updateBotWebhookJSONQuery = ['_' => 'updateBotWebhookJSONQuery', 'query_id' => long, 'data' => DataJSON, 'timeout' => int];
PWRTelegram json-encoded version:
{"_": "updateBotWebhookJSONQuery", "query_id": long, "data": DataJSON, "timeout": int}
Or, if you're into Lua:
updateBotWebhookJSONQuery={_='updateBotWebhookJSONQuery', query_id=long, data=DataJSON, timeout=int}