OBJECT

SubscriptionBenefitStateHistory

Data about the states a Subscription Benefit has transitioned through. Captures both user-initiated states such as initiating a DNR request, as well as system-initiated states such as completing a DNR request.

link GraphQL Schema definition

1type SubscriptionBenefitStateHistory {
2
3# When the benefit transitioned to this state.
4createdAt: Time
5
6# The logical state the benefit occupied.
7state: SubscriptionBenefitState!
8
9}