OBJECT

ProcessIOSPaymentPayload

ProcessIOSPaymentPayload returns the order created for the purchase.

link GraphQL Schema definition

1type ProcessIOSPaymentPayload {
2
3# The error code representing the reason why the requested Purchase Order failed
4# to be created. Populated only if an error occurred, nil otherwise.
5error: ProcessIOSPaymentErrorCode
6
7# The Purchase Order record created for this transaction attempt.
8purchaseOrder: PurchaseOrder
9
10}