MadelineProto/old_docs/API_docs_v65/constructors/messageActionPaymentSentMe.md
Daniil Gentili 1eb2fc0b4f fix
2017-04-21 13:27:04 +02:00

41 lines
1.1 KiB
Markdown

---
title: messageActionPaymentSentMe
description: messageActionPaymentSentMe attributes, type and example
---
## Constructor: messageActionPaymentSentMe
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|currency|[string](../types/string.md) | Yes|
|total\_amount|[long](../types/long.md) | Yes|
|payload|[bytes](../types/bytes.md) | Yes|
|info|[PaymentRequestedInfo](../types/PaymentRequestedInfo.md) | Optional|
|shipping\_option\_id|[string](../types/string.md) | Optional|
|charge|[PaymentCharge](../types/PaymentCharge.md) | Yes|
### Type: [MessageAction](../types/MessageAction.md)
### Example:
```
$messageActionPaymentSentMe = ['_' => '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, }
```