MadelineProtoDocs/old_docs/API_docs_v34/constructors/paymentSavedCredentialsCard.md

40 lines
823 B
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: paymentSavedCredentialsCard
description: Saved credit card
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: paymentSavedCredentialsCard
[Back to constructors index](index.md)
Saved credit card
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|id|[string](../types/string.md) | Yes|Card ID|
|title|[string](../types/string.md) | Yes|Title|
### Type: [PaymentSavedCredentials](../types/PaymentSavedCredentials.md)
### Example:
```php
$paymentSavedCredentialsCard = ['_' => 'paymentSavedCredentialsCard', 'id' => 'string', 'title' => 'string'];
```
Or, if you're into Lua:
```lua
paymentSavedCredentialsCard={_='paymentSavedCredentialsCard', id='string', title='string'}
```