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

io.github.robertograham.fortnite2.domain.LeaderBoardEntry Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package io.github.robertograham.fortnite2.domain;

/**
 * A leader board entry
 *
 * @since 1.0.0
 */
public interface LeaderBoardEntry {

    /**
     * @return the ID the Epic Games account this entry represents. The ID may
     * contain the following character: '{@code -}'
     * @since 1.0.0
     */
    String accountId();

    /**
     * @return typically the number of wins
     * @since 1.0.0
     */
    long value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy