OBJECT

UnacknowledgedSubscriptionEvent

Used to provide info on the subscription events that might have happened in another device and not acknowledged in the current device.

link GraphQL Schema definition

1type UnacknowledgedSubscriptionEvent {
2
3# The user of the channel the subscription was for.
4channel: User
5
6# The time that the subscription benefits will expire.
7endDate: Time
8
9# The external product id.
10externalProductID: ID!
11
12# The current status of the subscription. One of "active", "will_not_renew", or
13# "canceled".
14status: UnacknowledgedSubscriptionEventState!
15
16# The UUID of the subscription.
17subscriptionID: ID!
18
19}