OBJECT

SubscriptionProduct

link GraphQL Schema definition

1type SubscriptionProduct {
2
3# Currency used for the subscription
4currency: String!
5
6# Number of active subscribers for the subscription
7numSubscribers: Int
8
9# Stripe Price id on record for the current creator
10priceId: String
11
12# Stripe Product id on record for the current creator
13productId: String
14
15# Net earnings in USD from subscribers in the past 30 days
16recentEarnings: String
17
18# Monetary value of the subscription product expressed in units (cents)
19# unit_amount of 100 = 1$
20unitAmount: Float!
21
22}