MadelineProtoDocs/docs/API_docs/constructors/paymentSavedCredentialsCard.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

46 lines
987 B
Markdown

---
title: paymentSavedCredentialsCard
description: Payment saved credentials card
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: paymentSavedCredentialsCard
[Back to constructors index](index.md)
Payment saved credentials card
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|ID|
|title|[string](../types/string.md) | Yes|Title|
### Type: [PaymentSavedCredentials](../types/PaymentSavedCredentials.md)
### Example:
```php
$paymentSavedCredentialsCard = ['_' => 'paymentSavedCredentialsCard', 'id' => 'string', 'title' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "paymentSavedCredentialsCard", "id": "string", "title": "string"}
```
Or, if you're into Lua:
```lua
paymentSavedCredentialsCard={_='paymentSavedCredentialsCard', id='string', title='string'}
```