ENUM

UnacknowledgedSubscriptionEventState

Subscrption state of the reported unacknowledged events.

link GraphQL Schema definition

1enum UnacknowledgedSubscriptionEventState {
2
3# The subscription is active.
4ACTIVE
5
6# Subscription will not renew, but may still be active.
7WILL_NOT_RENEW
8
9# Subscription will not renew and is not active.
10CANCELLED
11
12# Subscription that is on hold.
13ON_HOLD
14}