MadelineProtoDocs/old_docs/API_docs_v25/constructors/inputPaymentCredentialsAndroidPay.md
2020-06-16 17:50:25 +02:00

40 lines
1009 B
Markdown

---
title: inputPaymentCredentialsAndroidPay
description: Android pay payment credentials
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: inputPaymentCredentialsAndroidPay
[Back to constructors index](index.md)
Android pay payment credentials
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|payment\_token|[DataJSON](../types/DataJSON.md) | Yes|Android pay payment token|
|google\_transaction\_id|[string](../types/string.md) | Yes|Google transaction ID|
### Type: [InputPaymentCredentials](../types/InputPaymentCredentials.md)
### Example:
```php
$inputPaymentCredentialsAndroidPay = ['_' => 'inputPaymentCredentialsAndroidPay', 'payment_token' => DataJSON, 'google_transaction_id' => 'string'];
```
Or, if you're into Lua:
```lua
inputPaymentCredentialsAndroidPay={_='inputPaymentCredentialsAndroidPay', payment_token=DataJSON, google_transaction_id='string'}
```