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

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

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

import com.fasterxml.jackson.annotation.JsonAlias;
import lombok.Data;
import lombok.Setter;
import org.jetbrains.annotations.ApiStatus;

import java.util.List;

@Data
@Setter(onMethod_ = { @Deprecated })
public class HypeTrainLevel {
    private String id;
    private Integer value;
    private Integer goal;
    private List rewards; // TODO(2.0.0): switch HypeTrainReward to HypeReward
    @JsonAlias("allTimeHighState")
    private String allTimeHighState;
    @Setter
    @Deprecated // no longer sent after switch to v2 topic
    @ApiStatus.ScheduledForRemoval(inVersion = "2.0.0")
    private Integer impressions;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy