OBJECT

BitsProductSelfEdge

The relation of a Bits product to a user.

link GraphQL Schema definition

1type BitsProductSelfEdge {
2
3# Holds configuration necessary to start bits purchase checkout flow for this
4# product for current user.
5checkoutConfiguration: CheckoutConfiguration
6
7# Is the user eligible to claim the product at the given quantity.
8eligibility(quantity: Int!): BitsProductEligibility!
9
10# Gets the preview price and tax info for the Bits purchase, or error if that
11# failed.
12purchaseInfo(quantity: Int!, paymentSession: PaymentSession): BitsProductPurchaseInfo!
13
14}