MadelineProtoDocs/docs/API_docs/constructors/payments_paymentVerificationNeeded.md

39 lines
806 B
Markdown
Raw Normal View History

2019-08-15 20:25:16 +02:00
---
title: payments.paymentVerificationNeeded
2019-08-15 20:30:02 +02:00
description: Payment verification needed
2019-08-15 20:25:16 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: payments.paymentVerificationNeeded
[Back to constructors index](index.md)
2019-08-15 20:30:02 +02:00
Payment verification needed
2019-08-15 20:25:16 +02:00
### Attributes:
2019-08-15 20:30:02 +02:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|url|[string](../types/string.md) | Yes|3dsecure URL|
2019-08-15 20:25:16 +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'}
```