
com.github.twitch4j.chat.events.roomstate.EmoteOnlyEvent Maven / Gradle / Ivy
package com.github.twitch4j.chat.events.roomstate;
import com.github.twitch4j.common.events.domain.EventChannel;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import lombok.Value;
/**
* Emote Only State Event
*/
@Value
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class EmoteOnlyEvent extends ChannelStatesEvent {
/**
* Constructor
*
* @param channel ChatChannel
* @param active State active?
*/
public EmoteOnlyEvent(EventChannel channel, boolean active) {
super(channel, active);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy