2019-06-23 13:07:51 +02:00
|
|
|
---
|
|
|
|
title: inputPaymentCredentialsAndroidPay
|
2019-12-27 17:48:04 +01:00
|
|
|
description: Android pay payment credentials
|
2019-06-23 13:07:51 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: inputPaymentCredentialsAndroidPay
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-27 17:48:04 +01:00
|
|
|
Android pay payment credentials
|
2019-06-23 13:07:51 +02:00
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|payment\_token|[DataJSON](../types/DataJSON.md) | Yes|Android pay payment token|
|
2019-06-23 13:07:51 +02:00
|
|
|
|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'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|