ENUM

ProductPurchaseErrorCode

Possible errors when retrieving product purchase info.

link GraphQL Schema definition

1enum ProductPurchaseErrorCode {
2
3# The user is unauthorized to retrieve the purchase info.
4USER_UNAUTHORIZED
5
6# PricingID not found.
7PRICING_ID_NOT_FOUND
8
9# Cannot determine the user residence.
10UNKNOWN_USER_RESIDENCE
11
12# Billing info not found for the user.
13BILLING_INFO_NOT_FOUND
14
15# User ineligible to make corresponding purchase.
16PURCHASE_INELIGIBLE
17
18# Unexpected error occurred.
19UNKNOWN
20}