2017-03-31 17:35:20 +02:00
|
|
|
---
|
|
|
|
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, ];
|
|
|
|
```
|
|
|
|
|
2017-07-23 16:11:02 +02:00
|
|
|
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
|
|
|
|
|
|
|
|
```
|
|
|
|
{"_":"paymentRequestedInfo","name":"string","phone":"string","email":"string","shipping_address":"PostAddress"}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2017-03-31 17:35:20 +02:00
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
paymentRequestedInfo={_='paymentRequestedInfo', name=string, phone=string, email=string, shipping_address=PostAddress, }
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|