com.github.twitch4j.helix.domain.BitsLeaderboard Maven / Gradle / Ivy
package com.github.twitch4j.helix.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AccessLevel;
import lombok.Data;
import lombok.Setter;
import java.util.List;
/**
* Bits Leaderboard
*/
@Data
public class BitsLeaderboard {
/**
* Data
*/
@JsonProperty("data")
private List entries;
/**
* Date range of the returned data.
*/
@Setter(AccessLevel.PRIVATE)
private DateRange dateRange;
/**
* Total number of results (users) returned.
* This is count or the total number of entries in the leaderboard, whichever is less.
*/
@Setter(AccessLevel.PRIVATE)
private Integer total;
@Deprecated
private HelixPagination pagination;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy