me.xhsun.guildwars2wrapper.model.v2.wvw.matches.WvWMatchStat 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.wvw.matches;
import java.util.List;
/**
* For more info on WvW matches API go here
* Model class for WvW match status
*
* @author xhsun
* @since 2017-06-20
*/
public class WvWMatchStat extends WvWMatch {
private WvWMatchDetail.Score deaths, kills;
private List maps;
public WvWMatchDetail.Score getDeaths() {
return deaths;
}
public WvWMatchDetail.Score getKills() {
return kills;
}
public List getMaps() {
return maps;
}
public class MapStat extends WvWMatchMap {
private WvWMatchDetail.Score deaths, kills;
public WvWMatchDetail.Score getDeaths() {
return deaths;
}
public WvWMatchDetail.Score getKills() {
return kills;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy