
com.github.twitch4j.chat.events.channel.FollowEvent Maven / Gradle / Ivy
package com.github.twitch4j.chat.events.channel;
import com.github.twitch4j.chat.events.AbstractChannelEvent;
import com.github.twitch4j.common.events.domain.EventChannel;
import com.github.twitch4j.common.events.domain.EventUser;
import lombok.EqualsAndHashCode;
import lombok.Value;
/**
* This event gets called when a user gets a new followers
*/
@Value
@EqualsAndHashCode(callSuper = true)
public class FollowEvent extends AbstractChannelEvent {
/**
* User
*/
private EventUser user;
/**
* Event Constructor
*
* @param channel The channel that this event originates from.
* @param user The user who triggered the event.
*/
public FollowEvent(EventChannel channel, EventUser user) {
super(channel);
this.user = user;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy