MadelineProtoDocs/old_docs/API_docs_v105/constructors/payments.paymentVerificationNeeded.md

40 lines
990 B
Markdown
Raw Permalink Normal View History

2019-08-15 20:25:16 +02:00
---
title: payments.paymentVerificationNeeded
2019-12-27 17:48:04 +01:00
description: Payment was not successful, additional verification is needed
2019-08-15 20:25:16 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2019-12-27 18:46:25 +01:00
redirect_from: /API_docs/constructors/payments_paymentVerificationNeeded.html
2019-08-15 20:25:16 +02:00
---
# Constructor: payments.paymentVerificationNeeded
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Payment was not successful, additional verification is needed
2019-08-15 20:30:02 +02:00
2019-08-15 20:25:16 +02:00
### Attributes:
2019-08-15 20:30:02 +02:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|url|[string](../types/string.md) | Yes|URL for additional payment credentials verification|
2019-08-15 20:25:16 +02:00
2019-12-27 18:25:37 +01:00
### Type: [payments.PaymentResult](../types/payments.PaymentResult.md)
2019-08-15 20:25:16 +02:00
### Example:
```php
2019-12-27 18:25:37 +01:00
$payments.paymentVerificationNeeded = ['_' => 'payments.paymentVerificationNeeded', 'url' => 'string'];
2019-08-15 20:25:16 +02:00
```
Or, if you're into Lua:
```lua
2019-12-27 18:25:37 +01:00
payments.paymentVerificationNeeded={_='payments.paymentVerificationNeeded', url='string'}
2019-08-15 20:25:16 +02:00
```