MadelineProtoDocs/old_docs/API_docs_v105/constructors/inputPaymentCredentialsApplePay.md

39 lines
825 B
Markdown
Raw Permalink Normal View History

2019-09-13 17:13:55 +02:00
---
title: inputPaymentCredentialsApplePay
2019-12-27 17:48:04 +01:00
description: Apple pay payment credentials
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputPaymentCredentialsApplePay
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Apple pay payment credentials
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|payment\_data|[DataJSON](../types/DataJSON.md) | Yes|Payment data|
### Type: [InputPaymentCredentials](../types/InputPaymentCredentials.md)
### Example:
```php
$inputPaymentCredentialsApplePay = ['_' => 'inputPaymentCredentialsApplePay', 'payment_data' => DataJSON];
```
Or, if you're into Lua:
```lua
inputPaymentCredentialsApplePay={_='inputPaymentCredentialsApplePay', payment_data=DataJSON}
```