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

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

The newest version!
package com.github.twitch4j.eventsub.domain.chat;

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

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

    /**
     * An ID that identifies this set of chat badges.
     * 

* For example: "bits", "subscriber", "vip", "moderator", "broadcaster", "partner", "ambassador", "turbo", * "hype-train", "no_audio", "no_video", "sub-gifter", "sub-gift-leader", "premium" (i.e., twitch prime) */ private String setId; /** * An ID that identifies this version of the badge. * The ID can be any value. *

* For example, for Bits, the ID is the Bits tier level, * but for World of Warcraft, it could be Alliance or Horde. */ private String id; /** * Contains metadata related to the chat badges in the badges tag. *

* Currently, this tag contains metadata only for subscriber badges, * to indicate the number of months the user has been a subscriber. */ private String info; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy