com.github.twitch4j.eventsub.events.EventSubModerationEvent Maven / Gradle / Ivy
The newest version!
package com.github.twitch4j.eventsub.events;
import lombok.AccessLevel;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;
@Data
@Setter(AccessLevel.PRIVATE)
@NoArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public abstract class EventSubModerationEvent extends EventSubUserChannelEvent implements ModeratorEvent {
/**
* The user ID of the issuer of the moderation action.
*/
private String moderatorUserId;
/**
* The user login of the issuer of the moderation action.
*/
private String moderatorUserLogin;
/**
* The user name of the issuer of the moderation action.
*/
private String moderatorUserName;
}