OBJECT

BountyProductKey

A key that can be redeemed for a product.

link GraphQL Schema definition

1type BountyProductKey {
2
3# The code that is used to redeem the product.
4code: String!
5
6# The platform where the code is redeemed.
7platform: String
8
9# The product type of the key - GAME, DLC, GIVEAWAY, GIFTCARD, etc.
10productType: BountyKeyProductType
11
12# The region where the code can be redeemed. The format and granularity of this
13# field varies
14# depending on the product key vendor.
15region: String
16
17}