MadelineProtoDocs/old_docs/API_docs_v105/constructors/payments_savedInfo.md

40 lines
891 B
Markdown
Raw Normal View History

2019-09-13 17:13:55 +02:00
---
title: payments.savedInfo
description: Saved info
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: payments.savedInfo
[Back to constructors index](index.md)
Saved info
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|has\_saved\_credentials|[Bool](../types/Bool.md) | Optional|Has saved credentials?|
|saved\_info|[PaymentRequestedInfo](../types/PaymentRequestedInfo.md) | Optional|Saved info|
### 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}
```