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