2017-07-23 17:44:01 +02:00
|
|
|
---
|
|
|
|
title: paymentRequestedInfo
|
|
|
|
description: paymentRequestedInfo attributes, type and example
|
|
|
|
---
|
|
|
|
## Constructor: paymentRequestedInfo
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required |
|
2017-08-20 11:05:56 +02:00
|
|
|
|----------|---------------|----------|
|
2017-07-23 17:44:01 +02:00
|
|
|
|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}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|