OBJECT

SubscriptionOffer

Subscription pricing information.

link GraphQL Schema definition

1type SubscriptionOffer {
2
3# Currency the offer is for.
4currency: String!
5
6# Exponent to use when shifting the currency.
7exponent: Int!
8
9# Id for offer on subscription product.
10id: ID!
11
12# Price for the offer.
13price: Int!
14
15# Promotion description.
16promoDescription: String
17
18}