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

me.xhsun.guildwars2wrapper.model.v1.AllWvWMatchOverview Maven / Gradle / Ivy

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