OBJECT
PollSettings
Poll Settings.
link GraphQL Schema definition
1 type PollSettings { 2 3 # Bits votes poll settings. 4 : PollSettingsBitsVotes! 5 6 # Channel Points votes poll settings. 7 : PollSettingsCommunityPointsVotes! 8 9 # ID of poll settings. 10 : ID! 11 12 # Multichoice voting poll settings. 13 : PollSettingsMultichoice! 14 15 # Subscriber multiplier poll settings. 16 : PollSettingsSubscriberMultiplier! @deprecated( reason: "Subscriber multipliers are no longer supported." ) 17 18 # Subscriber only poll settings. 19 : PollSettingsSubscriberOnly! @deprecated( reason: "Subscriber-only polls are no longer supported." ) 20 21 }