OBJECT
PaymentTransactionProduct
Payment transaction purchased product details.
link GraphQL Schema definition
1 type PaymentTransactionProduct { 2 3 # Number of digital goods wrapped into a product. 4 : Int! 5 6 # The name of the product. 7 : String! 8 9 # Some products have owners. For example, the owner of the `Lirik - Tier 1 10 # Subscription` product is Lirik. 11 : User 12 13 # Some products have tiers, such as subs. 14 : String 15 16 # What type of product the payment was made for. 17 : PaymentTransactionType! 18 19 }