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

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

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

import lombok.*;

/**
 * Bits Leaderboard Entry
 */
@Data
@Setter(AccessLevel.PRIVATE)
@NoArgsConstructor
public class BitsLeaderboardEntry {

    /** ID of the user (viewer) in the leaderboard entry. */
    @NonNull
    private String userId;

    /**
     * User login name.
     */
    private String userLogin;

    /**
     * Display name corresponding to user_id.
     */
    private String userName;

    /** Leaderboard rank of the user. */
    private Integer rank;

    /** Leaderboard score (number of Bits) of the user. */
    private Integer score;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy