MadelineProtoDocs/old_docs/API_docs_v105/constructors/payments_paymentResult.md

39 lines
730 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: payments.paymentResult
description: Payment result
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: payments.paymentResult
[Back to constructors index](index.md)
Payment result
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|updates|[Updates](../types/Updates.md) | Yes|Info about the payment|
2019-09-13 17:13:55 +02:00
### Type: [payments\_PaymentResult](../types/payments_PaymentResult.md)
### Example:
```php
$payments_paymentResult = ['_' => 'payments.paymentResult', 'updates' => Updates];
```
Or, if you're into Lua:
```lua
payments_paymentResult={_='payments.paymentResult', updates=Updates}
```