MadelineProtoDocs/old_docs/API_docs_v81/constructors/messageActionPaymentSentMe.md
2018-07-12 20:24:55 +02:00

1.5 KiB

title description image
messageActionPaymentSentMe messageActionPaymentSentMe attributes, type and example https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

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", "bytes":"base64 encoded 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}