MadelineProtoDocs/old_docs/API_docs_v105/constructors/payments_paymentVerificationNeeded.md

39 lines
913 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: payments.paymentVerificationNeeded
2019-12-27 17:48:04 +01:00
description: Payment was not successful, additional verification is needed
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# 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-09-13 17:13:55 +02:00
### Attributes:
| 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-09-13 17:13:55 +02:00
### Type: [payments\_PaymentResult](../types/payments_PaymentResult.md)
### Example:
```php
$payments_paymentVerificationNeeded = ['_' => 'payments.paymentVerificationNeeded', 'url' => 'string'];
```
Or, if you're into Lua:
```lua
payments_paymentVerificationNeeded={_='payments.paymentVerificationNeeded', url='string'}
```