MadelineProto/old_docs/API_docs_v65/constructors/updateBotPrecheckoutQuery.md
2017-07-23 16:11:02 +02:00

1.4 KiB

title description
updateBotPrecheckoutQuery updateBotPrecheckoutQuery attributes, type and example

Constructor: updateBotPrecheckoutQuery

Back to constructors index

Attributes:

Name Type Required
query_id long Yes
user_id int Yes
payload bytes Yes
info PaymentRequestedInfo Optional
shipping_option_id string Optional
currency string Yes
total_amount long Yes

Type: Update

Example:

$updateBotPrecheckoutQuery = ['_' => 'updateBotPrecheckoutQuery', 'query_id' => long, 'user_id' => int, 'payload' => bytes, 'info' => PaymentRequestedInfo, 'shipping_option_id' => string, 'currency' => string, 'total_amount' => long, ];

PWRTelegram json-encoded version:

{"_":"updateBotPrecheckoutQuery","query_id":"long","user_id":"int","payload":"bytes","info":"PaymentRequestedInfo","shipping_option_id":"string","currency":"string","total_amount":"long"}

Or, if you're into Lua:

updateBotPrecheckoutQuery={_='updateBotPrecheckoutQuery', query_id=long, user_id=int, payload=bytes, info=PaymentRequestedInfo, shipping_option_id=string, currency=string, total_amount=long, }