OBJECT

SubscriptionTenure

Tenure to a subscription product.

link GraphQL Schema definition

1type SubscriptionTenure {
2
3# The days remaining in a user's current tenure period.
4daysRemaining: Int!
5
6# The days elapsed in a user's current tenure period.
7elapsedDays: Int!
8
9# The ending date of a user's tenure.
10end: Time
11
12# The method used to calculate the user's tenure.
13method: SubscriptionTenureMethod!
14
15# The total duration of a user's tenure.
16months: Int!
17
18# The starting date of a user's tenure.
19start: Time
20
21}