40 lines
788 B
Markdown
40 lines
788 B
Markdown
|
---
|
||
|
title: bankCardOpenUrl
|
||
|
description: Credit card info URL provided by the bank
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: bankCardOpenUrl
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Credit card info URL provided by the bank
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|url|[string](../types/string.md) | Yes|Info URL|
|
||
|
|name|[string](../types/string.md) | Yes|Bank name|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [BankCardOpenUrl](../types/BankCardOpenUrl.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$bankCardOpenUrl = ['_' => 'bankCardOpenUrl', 'url' => 'string', 'name' => 'string'];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
bankCardOpenUrl={_='bankCardOpenUrl', url='string', name='string'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|