com.github.twitch4j.chat.events.roomstate.Robot9000Event Maven / Gradle / Ivy
The newest version!
package com.github.twitch4j.chat.events.roomstate;
import com.github.twitch4j.common.events.domain.EventChannel;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import lombok.Value;
/**
* R9K State Event
*/
@Value
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class Robot9000Event extends ChannelStatesEvent {
/**
* Constructor
*
* @param channel ChatChannel
* @param active State active?
*/
public Robot9000Event(EventChannel channel, boolean active) {
super(channel, active);
}
}