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

me.xhsun.guildwars2wrapper.model.v2.guild.GuildTreasury Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package me.xhsun.guildwars2wrapper.model.v2.guild;

import java.util.List;

/**
 * For more info on guild treasury API go here
* Model class for guild treasury * * @author xhsun * @since 2017-06-19 */ public class GuildTreasury { private int item_id, count; private List needed_by; public int getItemId() { return item_id; } public int getCount() { return count; } public List getNeededBy() { return needed_by; } public class NeedBy { private int upgrade_id, count; public int getUpgradeId() { return upgrade_id; } public int getCount() { return count; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy