OBJECT

LiveUpNotificationInfo

Information about the live up notification of a user.

link GraphQL Schema definition

1type LiveUpNotificationInfo {
2
3# Whether the user's liveUpNotification field is the default value (i.e. "
4# went live!").
5isDefault: Boolean
6
7# The text that will be in the notification that sends when the user starts
8# broadcasting.
9# The default value is currently a translated version of " went live!" when
10# the user has not set a custom value.
11liveUpNotification: String
12
13}