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

com.github.twitch4j.eventsub.domain.chat.Message Maven / Gradle / Ivy

There is a newer version: 1.23.0
Show newest version
package com.github.twitch4j.eventsub.domain.chat;

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

import java.util.List;

@Data
@Setter(AccessLevel.PRIVATE)
public class Message {

    /**
     * The chat message in plain text.
     */
    private String text;

    /**
     * Ordered list of chat message fragments.
     */
    private List fragments;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy