INPUT_OBJECT

AndroidReceiptDataInput

AndroidReceiptDataInput contains the necessary fields to pass in Android purchase receipt data.

link GraphQL Schema definition

1input AndroidReceiptDataInput {
4
2# The currency the user was charged in.
3currency: String!
7
5# The amount user was charged.
6price: String!
10
8# The raw receipt of the purchase.
9rawReceipt: String!
13
11# The receipt signature for the purchase.
12signedReceipt: String!
16
14# The unit the user was charged in.
15units: AndroidCurrencyUnits!
17}