OBJECT

StreamSummary

Analytics information for a streaming session.

link GraphQL Schema definition

1type StreamSummary {
2
3# The associated archives of the stream.
4archiveVideos: [Video!]
5
6# Average viewers for the time period.
7averageViewers: Float!
8
9# The ID for the streaming channel.
10channelID: ID!
11
12# Unique chatters for the time period.
13chatters: Int!
14
15# The number of clips created during the stream summary.
16clipsCreated: Int!
17
18# The time that the stream session ended.
19endedAt: Time!
20
21# Number of follows for the time period.
22follows: Int!
23
24# Notification information for a given stream session.
25goLiveNotification: GoLiveNotification
26
27# Live views for the time period.
28liveViews: Int!
29
30# Max viewers for the time period.
31maxViewers: Int!
32
33# New subscriptions for the time period.
34newSubscriptions: Int!
35
36# The time that the stream session started.
37startedAt: Time!
38
39# Unique chatters for the time period.
40uniqueChatters: Int! @deprecated( reason: "Use chatters instead" )
41
42# Unique viewers for the time period.
43uniqueViewers: Int!
44
45}