OBJECT

SubscriptionTokenBundleProduct

A SubscriptionTokenBundleProduct can contain multiple Offers. ex) A Bundle of size 3 tokens, can have 3 other offers such as:

  • Normal offer: "Pay $16.99 for the bundle
  • Discounted, one-time buy offer: "Pay $14.99 for the bundle, but a one-time purchase only"
  • Bits: Use X amount of Bits to purchase this Bundle.

link GraphQL Schema definition

1type SubscriptionTokenBundleProduct {
2
3# Assets assocaited with a certain Token Bundle Product.
4assets: [TokenBundleAsset!]
5
6# Subscription token bundle product's identifier.
7id: ID!
8
9# List of available offers for this bundle product.
10# Displays the cheapest offer to the user, if there are promotions to be applied.
11offers: [Offer!]
12
13# Quantity of tokens the bundle.
14quantity: Int!
15
16}