INPUT_OBJECT

ProcessAndroidPaymentInput

ProcessAndroidPaymentInput contains the necessary fields to process an Android payment.

link GraphQL Schema definition

1input ProcessAndroidPaymentInput {
4
2# User IDs of the gift purchase recipients (if the Offer is a gift).
3giftRecipientUserIDs: [ID!]
7
5# The ID of the Offer.
6offerID: ID!
10
8# The ID of the user making the purchase.
9purchasingUserID: ID!
13
11# The number of units purchased.
12quantity: Int!
16
14# The receipt data required to process Android purchases.
15receiptData: AndroidReceiptDataInput!
19
17# The static and dynamic bindings of the attributes on an Offer.
18tagBindings: [OfferTagBindingInput!]!
22
20# The purchase tracking data.
21trackingData: AndroidPaymentTrackingDataInput
23}