me.xhsun.guildwars2wrapper.model.v1.AllWvWMatchOverview 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.v1;
import java.util.List;
/**
* For more info on v1 wvw matches API go here
* Model class for wvw match
*
* @author xhsun
* @since 2017-06-28
*/
public class AllWvWMatchOverview {
private List wvw_matches;
public List getWvw_matches() {
return wvw_matches;
}
public class MatchOverview {
private String wvw_match_id, start_time, end_time;
private int red_world_id, blue_world_id, green_world_id;
public String getWvw_match_id() {
return wvw_match_id;
}
public String getStart_time() {
return start_time;
}
public String getEnd_time() {
return end_time;
}
public int getRed_world_id() {
return red_world_id;
}
public int getBlue_world_id() {
return blue_world_id;
}
public int getGreen_world_id() {
return green_world_id;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy