40 lines
844 B
Markdown
40 lines
844 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'];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
paymentSavedCredentialsCard={_='paymentSavedCredentialsCard', id='string', title='string'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|