me.xhsun.guildwars2wrapper.model.v2.guild.GuildTreasury 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.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