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