1.4 KiB
1.4 KiB
title | description |
---|---|
messageActionPaymentSentMe | messageActionPaymentSentMe attributes, type and example |
Constructor: messageActionPaymentSentMe
Attributes:
Name | Type | Required |
---|---|---|
currency | string | Yes |
total_amount | long | Yes |
payload | bytes | Yes |
info | PaymentRequestedInfo | Optional |
shipping_option_id | string | Optional |
charge | PaymentCharge | Yes |
Type: MessageAction
Example:
$messageActionPaymentSentMe = ['_' => 'messageActionPaymentSentMe', 'currency' => 'string', 'total_amount' => long, 'payload' => 'bytes', 'info' => PaymentRequestedInfo, 'shipping_option_id' => 'string', 'charge' => PaymentCharge];
PWRTelegram json-encoded version:
{"_": "messageActionPaymentSentMe", "currency": "string", "total_amount": long, "payload": "bytes", "info": PaymentRequestedInfo, "shipping_option_id": "string", "charge": PaymentCharge}
Or, if you're into Lua:
messageActionPaymentSentMe={_='messageActionPaymentSentMe', currency='string', total_amount=long, payload='bytes', info=PaymentRequestedInfo, shipping_option_id='string', charge=PaymentCharge}