OBJECT

GoLiveNotification

Analytics associated with a given notification.

link GraphQL Schema definition

1type GoLiveNotification {
2
3# Custom notification text, e.g., "Summit1g playing Hearthstone today".
4customText: String!
5
6# Number of followers that engaged with the notification.
7engagements: Int!
8
9# Number of followers at the time the notification was sent.
10followerCount: Int!
11
12# Number of followers that were sent the notification.
13followersNotified: Int!
14
15# Time that the associated stream went live.
16streamStartTime: Time!
17
18}