2017-04-21 13:27:04 +02:00
|
|
|
---
|
|
|
|
title: payments.paymentReceipt
|
|
|
|
description: payments_paymentReceipt attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: payments.paymentReceipt
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
2017-08-20 11:05:56 +02:00
|
|
|
|----------|---------------|----------|
|
2017-04-21 13:27:04 +02:00
|
|
|
|date|[int](../types/int.md) | Yes|
|
|
|
|
|bot\_id|[int](../types/int.md) | Yes|
|
|
|
|
|invoice|[Invoice](../types/Invoice.md) | Yes|
|
|
|
|
|provider\_id|[int](../types/int.md) | Yes|
|
|
|
|
|info|[PaymentRequestedInfo](../types/PaymentRequestedInfo.md) | Optional|
|
|
|
|
|shipping|[ShippingOption](../types/ShippingOption.md) | Optional|
|
|
|
|
|currency|[string](../types/string.md) | Yes|
|
|
|
|
|total\_amount|[long](../types/long.md) | Yes|
|
|
|
|
|credentials\_title|[string](../types/string.md) | Yes|
|
|
|
|
|users|Array of [User](../types/User.md) | Yes|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [payments\_PaymentReceipt](../types/payments_PaymentReceipt.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
$payments_paymentReceipt = ['_' => 'payments.paymentReceipt', 'date' => int, 'bot_id' => int, 'invoice' => Invoice, 'provider_id' => int, 'info' => PaymentRequestedInfo, 'shipping' => ShippingOption, 'currency' => 'string', 'total_amount' => long, 'credentials_title' => 'string', 'users' => [User]];
|
2017-04-21 13:27:04 +02:00
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
{"_": "payments.paymentReceipt", "date": int, "bot_id": int, "invoice": Invoice, "provider_id": int, "info": PaymentRequestedInfo, "shipping": ShippingOption, "currency": "string", "total_amount": long, "credentials_title": "string", "users": [User]}
|
2017-07-23 16:11:02 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-04-21 13:27:04 +02:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
2017-07-23 16:33:46 +02:00
|
|
|
payments_paymentReceipt={_='payments.paymentReceipt', date=int, bot_id=int, invoice=Invoice, provider_id=int, info=PaymentRequestedInfo, shipping=ShippingOption, currency='string', total_amount=long, credentials_title='string', users={User}}
|
2017-04-21 13:27:04 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|