MadelineProtoDocs/old_docs/API_docs_v105/constructors/paymentRequestedInfo.md

42 lines
1.0 KiB
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: paymentRequestedInfo
description: Payment requested info
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: paymentRequestedInfo
[Back to constructors index](index.md)
Payment requested info
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|name|[string](../types/string.md) | Optional|Name|
|phone|[string](../types/string.md) | Optional|Phone|
|email|[string](../types/string.md) | Optional|Email|
|shipping\_address|[PostAddress](../types/PostAddress.md) | Optional|Shipping address|
### Type: [PaymentRequestedInfo](../types/PaymentRequestedInfo.md)
### Example:
```php
$paymentRequestedInfo = ['_' => 'paymentRequestedInfo', 'name' => 'string', 'phone' => 'string', 'email' => 'string', 'shipping_address' => PostAddress];
```
Or, if you're into Lua:
```lua
paymentRequestedInfo={_='paymentRequestedInfo', name='string', phone='string', email='string', shipping_address=PostAddress}
```