me.xhsun.guildwars2wrapper.model.v2.pvp.PvPLeaderBoard Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gw2wrapper Show documentation
Show all versions of gw2wrapper Show documentation
Guild Wars 2 API wrapper for Android
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