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

com.github.twitch4j.eventsub.events.ChannelSharedChatUpdateEvent Maven / Gradle / Ivy

The newest version!
package com.github.twitch4j.eventsub.events;

import com.github.twitch4j.eventsub.domain.SharedChatParticipant;
import lombok.AccessLevel;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.Setter;
import lombok.ToString;

import java.util.List;

@Data
@Setter(AccessLevel.PRIVATE)
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class ChannelSharedChatUpdateEvent extends SharedChatEvent {

    /**
     * The list of participants in the session.
     */
    private List participants;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy