OBJECT

BroadcastSettings

Settings for a User's broadcast that persist between streams.

link GraphQL Schema definition

1type BroadcastSettings {
2
3# The game that the user has set as their current game. This will influence what
4# the game field on a Streams object is when the User starts streaming.
5game: Game
6
7# The broadcast setting's unique identifier.
8# This happens to be the same as the User's ID, but should not be assumed to have
9# any meaning.
10id: ID!
11
12# A flag indicating if the user's broadcast is intended for mature audiences only.
13isMature: Boolean!
14
15# The primary language that the user has configured for their broadcasts. The
16# default value is "", when the user has not indicated a primary language.
17language: Language!
18
19# The text that will be in the notification that sends when the user starts
20# broadcasting.
21# The default value is " went live!", when the user has not set a custom
22# value.
23liveUpNotification: String @deprecated( reason: "Use liveUpNotificationInfo instead." )
24
25# The information about the live up notification of a user.
26liveUpNotificationInfo: LiveUpNotificationInfo
27
28# The title of the user's broadcast. The default value is "", when the user has
29# not indicated a title.
30title: String!
31
32}