me.xhsun.guildwars2wrapper.model.v2.guild.GuildTeam 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.guild;
import me.xhsun.guildwars2wrapper.model.identifiable.IdentifiableStr;
import me.xhsun.guildwars2wrapper.model.identifiable.NameableInt;
import me.xhsun.guildwars2wrapper.model.v2.pvp.PvPGame;
import me.xhsun.guildwars2wrapper.model.v2.pvp.PvPStat;
import java.util.List;
import java.util.Map;
/**
* For more info on guild teams API go here
* Model class for guild teams
*
* @author xhsun
* @since 2017-06-19
*/
public class GuildTeam extends NameableInt {
private List members;
private PvPStat.WinLoss aggregate;
private Map ladders;
private List games;
private List seasons;
public List getMembers() {
return members;
}
public PvPStat.WinLoss getAggregate() {
return aggregate;
}
public Map getLadders() {
return ladders;
}
public List getGames() {
return games;
}
public List getSeasons() {
return seasons;
}
public class Member {
private String name, role;
public String getName() {
return name;
}
public String getRole() {
return role;
}
}
public class Season extends IdentifiableStr {
private int wins, losses, rating;
public int getWins() {
return wins;
}
public int getLosses() {
return losses;
}
public int getRating() {
return rating;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy