me.xhsun.guildwars2wrapper.model.v2.wvw.matches.WvWMatchOverview 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 overview
*
* @author xhsun
* @since 2017-06-19
*/
public class WvWMatchOverview extends WvWMatch {
private String start_time, end_time;
private WvWMatchDetail.Score worlds;
private AllWorld all_worlds;
public String getStartTime() {
return start_time;
}
public String getEndTime() {
return end_time;
}
public WvWMatchDetail.Score getWorlds() {
return worlds;
}
public AllWorld getAllWorlds() {
return all_worlds;
}
public class AllWorld {
private List red, blue, green;
public List getRed() {
return red;
}
public List getBlue() {
return blue;
}
public List getGreen() {
return green;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy