MadelineProto/docs/API_docs/constructors/paymentSavedCredentialsCard.md

44 lines
859 B
Markdown
Raw Normal View History

---
title: paymentSavedCredentialsCard
description: paymentSavedCredentialsCard attributes, type and example
---
## Constructor: paymentSavedCredentialsCard
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|id|[string](../types/string.md) | Yes|
|title|[string](../types/string.md) | Yes|
### Type: [PaymentSavedCredentials](../types/PaymentSavedCredentials.md)
### Example:
```
$paymentSavedCredentialsCard = ['_' => 'paymentSavedCredentialsCard', 'id' => string, 'title' => string, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"paymentSavedCredentialsCard","id":"string","title":"string"}
```
Or, if you're into Lua:
```
paymentSavedCredentialsCard={_='paymentSavedCredentialsCard', id=string, title=string, }
```