MadelineProtoDocs/old_docs/API_docs_v81/constructors/payments_savedInfo.md

45 lines
1017 B
Markdown
Raw Normal View History

2018-07-12 20:24:55 +02:00
---
title: payments.savedInfo
description: payments_savedInfo attributes, type and example
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: payments.savedInfo
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|---------------|----------|
|has\_saved\_credentials|[Bool](../types/Bool.md) | Optional|
|saved\_info|[PaymentRequestedInfo](../types/PaymentRequestedInfo.md) | Optional|
### Type: [payments\_SavedInfo](../types/payments_SavedInfo.md)
### Example:
```
$payments_savedInfo = ['_' => 'payments.savedInfo', 'has_saved_credentials' => Bool, 'saved_info' => PaymentRequestedInfo];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "payments.savedInfo", "has_saved_credentials": Bool, "saved_info": PaymentRequestedInfo}
```
Or, if you're into Lua:
```
payments_savedInfo={_='payments.savedInfo', has_saved_credentials=Bool, saved_info=PaymentRequestedInfo}
```