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

me.xhsun.guildwars2wrapper.model.v2.guild.GuildTeam Maven / Gradle / Ivy

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