MadelineProto/old_docs/API_docs_v66/constructors/payments_savedInfo.md

44 lines
947 B
Markdown
Raw Normal View History

2017-06-30 15:36:33 +02:00
---
title: payments.savedInfo
description: payments_savedInfo attributes, type and example
---
## 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, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"payments.savedInfo","has_saved_credentials":"Bool","saved_info":"PaymentRequestedInfo"}
```
2017-06-30 15:36:33 +02:00
Or, if you're into Lua:
```
payments_savedInfo={_='payments.savedInfo', has_saved_credentials=Bool, saved_info=PaymentRequestedInfo, }
```