OBJECT

PaymentTransactionProduct

Payment transaction purchased product details.

link GraphQL Schema definition

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