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

me.xhsun.guildwars2wrapper.model.v2.pvp.PvPLeaderBoard Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package me.xhsun.guildwars2wrapper.model.v2.pvp;

import me.xhsun.guildwars2wrapper.model.identifiable.IdentifiableStr;
import me.xhsun.guildwars2wrapper.model.identifiable.NameableStr;

import java.util.List;

/**
 * For more info on pvp leaderboards API go here
* Model class for pvp leaderboard * * @author xhsun * @since 2017-06-19 */ public class PvPLeaderBoard extends NameableStr { private int rank, team_id; private String team, date; private List scores; public int getRank() { return rank; } public int getTeamId() { return team_id; } public String getTeam() { return team; } public String getDate() { return date; } public List getScores() { return scores; } public class Score extends IdentifiableStr { private int value; public int getValue() { return value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy