2019-06-23 13:07:51 +02:00
|
|
|
---
|
|
|
|
title: paymentRequestedInfo
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Order info provided by the user
|
2019-06-23 13:07:51 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: paymentRequestedInfo
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Order info provided by the user
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|name|[string](../types/string.md) | Optional|User's full name|
|
|
|
|
|phone|[string](../types/string.md) | Optional|User's phone number|
|
|
|
|
|email|[string](../types/string.md) | Optional|User's email address|
|
|
|
|
|shipping\_address|[PostAddress](../types/PostAddress.md) | Optional|User's shipping address|
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### 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}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|