OBJECT
BountyProductKey
A key that can be redeemed for a product.
link GraphQL Schema definition
1 type BountyProductKey { 2 3 # The code that is used to redeem the product. 4 : String! 5 6 # The platform where the code is redeemed. 7 : String 8 9 # The product type of the key - GAME, DLC, GIVEAWAY, GIFTCARD, etc. 10 : 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. 15 : String 16 17 }