MadelineProto/old_docs/API_docs_v68/constructors/messageActionPaymentSentMe.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00: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}