OBJECT

BitsProductEligibility

The type used when checking bits product eligibility for a user.

link GraphQL Schema definition

1type BitsProductEligibility {
2
3# A boolean that is true when the user is eligible for the product.
4canPurchase: Boolean!
5
6# If the user is ineligible for the product, then this code is set
7# as the reason why the user is ineligible for the product.
8reasonCode: String
9
10}