MadelineProtoDocs/docs/API_docs/constructors/inputPaymentCredentialsApplePay.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

45 lines
963 B
Markdown

---
title: inputPaymentCredentialsApplePay
description: Payment credentials apple pay
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputPaymentCredentialsApplePay
[Back to constructors index](index.md)
Payment credentials apple pay
### 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];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "inputPaymentCredentialsApplePay", "payment_data": DataJSON}
```
Or, if you're into Lua:
```lua
inputPaymentCredentialsApplePay={_='inputPaymentCredentialsApplePay', payment_data=DataJSON}
```