--- title: payments.paymentVerficationNeeded description: Payment verfication needed image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: payments.paymentVerficationNeeded [Back to constructors index](index.md) Payment verfication needed ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |url|[string](../types/string.md) | Yes|URL| ### Type: [payments\_PaymentResult](../types/payments_PaymentResult.md) ### Example: ```php $payments_paymentVerficationNeeded = ['_' => 'payments.paymentVerficationNeeded', 'url' => 'string']; ``` [PWRTelegram](https://pwrtelegram.xyz) json-encoded version: ``` {"_": "payments.paymentVerficationNeeded", "url": "string"} ``` Or, if you're into Lua: ```lua payments_paymentVerficationNeeded={_='payments.paymentVerficationNeeded', url='string'} ```