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

com.github.twitch4j.pubsub.domain.ChatHighlight Maven / Gradle / Ivy

The newest version!
package com.github.twitch4j.pubsub.domain;

import lombok.AccessLevel;
import lombok.Data;
import lombok.Setter;

@Data
@Setter(AccessLevel.PRIVATE)
public class ChatHighlight {
    private String type;
    private String sourceChannelId;
    private Long secondsSinceEvent;

    public boolean isRaider() {
        return "raider".equalsIgnoreCase(type);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy