INTERFACE

BitsOffer

BitsOffer is a way to obtain more bits.

link GraphQL Schema definition

1interface BitsOffer {
2
3# bits is the number of bits this offer grants.
4bits: Int!
5
6id: ID!
7
8# type is the kind of offer object.
9type: BitsOfferType!
10
11}