MadelineProtoDocs/old_docs/API_docs_v30/constructors/messageActionPaymentSent.md

40 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: messageActionPaymentSent
description: A payment was sent
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: messageActionPaymentSent
[Back to constructors index](index.md)
A payment was sent
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|currency|[string](../types/string.md) | Yes|Three-letter ISO 4217 [currency](https://core.telegram.org/bots/payments#supported-currencies) code|
|total\_amount|[long](../types/long.md) | Yes|Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of `US$ 1.45` pass `amount = 145`. See the exp parameter in [currencies.json](https://core.telegram.org/bots/payments/currencies.json), it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).|
### Type: [MessageAction](../types/MessageAction.md)
### Example:
```php
$messageActionPaymentSent = ['_' => 'messageActionPaymentSent', 'currency' => 'string', 'total_amount' => long];
```
Or, if you're into Lua:
```lua
messageActionPaymentSent={_='messageActionPaymentSent', currency='string', total_amount=long}
```