MadelineProtoDocs/old_docs/API_docs_v105/constructors/payments_savedInfo.md
2019-12-27 17:48:04 +01:00

40 lines
995 B
Markdown

---
title: payments.savedInfo
description: Saved server-side order information
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: payments.savedInfo
[Back to constructors index](index.md)
Saved server-side order information
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|has\_saved\_credentials|[Bool](../types/Bool.md) | Optional|Whether the user has some saved payment credentials|
|saved\_info|[PaymentRequestedInfo](../types/PaymentRequestedInfo.md) | Optional|Saved server-side order information|
### Type: [payments\_SavedInfo](../types/payments_SavedInfo.md)
### Example:
```php
$payments_savedInfo = ['_' => 'payments.savedInfo', 'has_saved_credentials' => Bool, 'saved_info' => PaymentRequestedInfo];
```
Or, if you're into Lua:
```lua
payments_savedInfo={_='payments.savedInfo', has_saved_credentials=Bool, saved_info=PaymentRequestedInfo}
```