MadelineProto/old_docs/API_docs_v65/constructors/updateBotPrecheckoutQuery.md
Daniil Gentili 1eb2fc0b4f fix
2017-04-21 13:27:04 +02:00

1.2 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, ];

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, }