OBJECT

BoostSettings

A BoostSettings is a set of preferences set by a creator regarding Community Boosts for their channel.

link GraphQL Schema definition

1type BoostSettings {
2
3# If Boosts earned through community challenges are enabled on this channel.
4isEarnedEnabled: Boolean
5
6# If the channel is eligible to recieve boosts.
7isEligible: Boolean!
8
9# If Boosts are enabled on this channel.
10isEnabled: Boolean
11
12# If Boosts paid for by the community are enabled on this channel.
13isPaidEnabled: Boolean
14
15}