class Twitch::Bot::Message::SubsOnlyMode

This class stores the details of a SubsOnlyMode event.

Attributes

channel[R]
status[R]

Public Class Methods

new(status:, channel:) click to toggle source
# File lib/twitch/bot/message.rb, line 107
def initialize(status:, channel:)
  @status = status
  @channel = channel
  @type = :subs_only_mode
end