me.xhsun.guildwars2wrapper.model.v2.pvp.PvPStanding 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;
/**
* For more info on pvp standings API go here
* Model class for pvp standings
*
* @author xhsun
* @since 2017-06-19
*/
public class PvPStanding {
private String season_id;
private Standing current, best;
public String getSeasonId() {
return season_id;
}
public Standing getCurrent() {
return current;
}
public Standing getBest() {
return best;
}
public class Standing {
private int total_points, division, tier, points,
repeats, rating, decay;
public int getTotalPoints() {
return total_points;
}
public int getDivision() {
return division;
}
public int getTier() {
return tier;
}
public int getPoints() {
return points;
}
public int getRepeats() {
return repeats;
}
public int getRating() {
return rating;
}
public int getDecay() {
return decay;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy