me.xhsun.guildwars2wrapper.model.v2.pvp.PvPRank 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.NameableInt;
import java.util.List;
/**
* For more info on pvp ranks API go here
* Model class for pvp rank
*
* @author xhsun
* @since 2017-06-19
*/
public class PvPRank extends NameableInt {
private int finisher_id, min_rank, max_rank;
private String icon;
private List levels;
public int getFinisherId() {
return finisher_id;
}
public int getMinRank() {
return min_rank;
}
public int getMaxRank() {
return max_rank;
}
public String getIcon() {
return icon;
}
public List getLevels() {
return levels;
}
private class Level {
private int min_rank, max_rank, points;
public int getMinRank() {
return min_rank;
}
public int getMaxRank() {
return max_rank;
}
public int getPoints() {
return points;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy