All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.twitch4j.chat.events.roomstate.SubscribersOnlyEvent 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;

/**
 * Subscribers Only State Event
 */
@Value
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class SubscribersOnlyEvent extends ChannelStatesEvent {

    /**
     * Constructor
     *
     * @param channel ChatChannel
     * @param active State active?
     */
	public SubscribersOnlyEvent(EventChannel channel, boolean active) {
		super(channel, active);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy