MadelineProto/old_docs/API_docs_v65/constructors/paymentRequestedInfo.md
2017-07-23 16:11:02 +02:00

46 lines
1.1 KiB
Markdown

---
title: paymentRequestedInfo
description: paymentRequestedInfo attributes, type and example
---
## Constructor: paymentRequestedInfo
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|name|[string](../types/string.md) | Optional|
|phone|[string](../types/string.md) | Optional|
|email|[string](../types/string.md) | Optional|
|shipping\_address|[PostAddress](../types/PostAddress.md) | Optional|
### Type: [PaymentRequestedInfo](../types/PaymentRequestedInfo.md)
### Example:
```
$paymentRequestedInfo = ['_' => 'paymentRequestedInfo', 'name' => string, 'phone' => string, 'email' => string, 'shipping_address' => PostAddress, ];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"paymentRequestedInfo","name":"string","phone":"string","email":"string","shipping_address":"PostAddress"}
```
Or, if you're into Lua:
```
paymentRequestedInfo={_='paymentRequestedInfo', name=string, phone=string, email=string, shipping_address=PostAddress, }
```