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

com.github.twitch4j.helix.domain.ChatBadgeSet Maven / Gradle / Ivy

package com.github.twitch4j.helix.domain;

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

import java.util.List;

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

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

* For example, Bits or Subscriber. */ private String setId; /** * Contains chat badge objects for the set. *

* The list is sorted in ascending order by {@link ChatBadge#getId()}. */ private List versions; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy