2019-09-13 17:13:55 +02:00
|
|
|
---
|
|
|
|
title: paymentSavedCredentialsCard
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Saved credit card
|
2019-09-13 17:13:55 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: paymentSavedCredentialsCard
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Saved credit card
|
2019-09-13 17:13:55 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|id|[string](../types/string.md) | Yes|Card ID|
|
2019-09-13 17:13:55 +02:00
|
|
|
|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'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|