OBJECT

AutohostSettings

A user's autohosting settings.

link GraphQL Schema definition

1type AutohostSettings {
2
3# True if this channels prefers autohost over vodcast.
4deprioritizeVodcast: Boolean!
5
6# True if this channel has the autohost feature turned on.
7enabled: Boolean!
8
9# Determines what other channels can raid this channel.
10incomingRaidsPolicy: AutohostSettingsIncomingRaidsPolicy! @deprecated( reason: "Use User.raidSettings.incomingRaidsPolicy instead." )
11
12# The strategy to use when choosing channels to autohost.
13strategy: AutohostSettingsStrategy!
14
15# True if this user autohosts their team members.
16teamHost: Boolean!
17
18}