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

me.xhsun.guildwars2wrapper.model.v2.wvw.matches.WvWMatchOverview Maven / Gradle / Ivy

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