OBJECT

BitsProduct

A product for bits that contains all information about a product, except for the pricing.

link GraphQL Schema definition

1type BitsProduct {
2
3# The amount of bits the product is for.
4amount: Int!
5
6# The product ID.
7id: ID!
8
9# The maximum quantity a user can purchase at once.
10maxQuantity: Int!
11
12# The offer id associated with this product's id (if available).
13offerID: ID
14
15# A field that contains promotional information about the product.
16promo: BitsProductPromotion
17
18# The relation of the product to the user.
19self: BitsProductSelfEdge
20
21# The product type, which right now is only "purchase".
22type: BitsProductType!
23
24}