com.github.twitch4j.tmi.domain.Chatters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twitch4j-messaginginterface Show documentation
Show all versions of twitch4j-messaginginterface Show documentation
Twitch Message Interface API dependency
The newest version!
package com.github.twitch4j.tmi.domain;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
@Data
@Setter(AccessLevel.PRIVATE)
@NoArgsConstructor
public class Chatters {
/** Viewer Count */
@NonNull
@JsonProperty("chatter_count")
private Integer viewerCount;
/** VIPS */
@JsonIgnore
private List vips;
/** Broadcaster */
@JsonIgnore
private List broadcaster;
/** Staff */
@JsonIgnore
@Deprecated
private List staff;
/** Admins */
@JsonIgnore
@Deprecated
private List admins;
/** Moderators */
@JsonIgnore
private List moderators;
/** Viewers */
@JsonIgnore
private List viewers;
@JsonProperty("chatters")
private void unpackMessage(Map> chatters) {
broadcaster = chatters.get("broadcaster");
vips = chatters.get("vips");
moderators = chatters.get("moderators");
staff = chatters.get("staff");
admins = chatters.get("admins");
viewers = chatters.get("viewers");
}
/**
* Gets all viewers, including vips/moderators/staff/admins
*
* @return all viewers (name)
*/
public List getAllViewers() {
List newList = new ArrayList<>(viewerCount);
newList.addAll(broadcaster);
newList.addAll(vips);
newList.addAll(moderators);
newList.addAll(staff);
newList.addAll(admins);
newList.addAll(viewers);
return newList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy