1.4 KiB
1.4 KiB
title | description |
---|---|
updateBotPrecheckoutQuery | updateBotPrecheckoutQuery attributes, type and example |
Constructor: updateBotPrecheckoutQuery
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}