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

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

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

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

import java.time.Instant;

/**
 * @deprecated the crowd chant experiment was disabled by Twitch on 2022-02-02
 */
@Data
@Setter(AccessLevel.PRIVATE)
@Deprecated
public class CrowdChant {
    private String id;
    private String channelId;
    private ChannelPointsUser user;
    private String chatMessageId;
    private String text;
    private Instant createdAt;
    private Instant endsAt;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy