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

1.4 KiB

title description
messageActionPaymentSentMe messageActionPaymentSentMe attributes, type and example

Constructor: messageActionPaymentSentMe

Back to constructors index

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