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