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

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

There is a newer version: 1.3.2
Show newest version
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