ENUM

BitsProductPurchaseInfoErrorCode

Possible errors when retrieving bits product purchase info.

link GraphQL Schema definition

1enum BitsProductPurchaseInfoErrorCode {
2
3# An unexpected internal server error occurred.
4INTERNAL_SERVER_ERROR
5
6# The user is unauthorized to view purchase info.
7USER_UNAUTHORIZED
8
9# The Pricing ID is not found (404).
10PRICING_ID_NOT_FOUND
11
12# Cannot determine User Residence. Either billing address and IP doesn't match or
13# user doesn't have country of resident declared (409).
14UNKNOWN_USER_RESIDENCE
15
16# The billing info could not be found for the user and provider (410).
17BILLING_INFO_NOT_FOUND
18
19# User is not eligible to purchase bits in this region (422).
20PURCHASE_INELIGIBLE
21}