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

me.xhsun.guildwars2wrapper.model.v2.util.itemDetail.Consumable Maven / Gradle / Ivy

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

import me.xhsun.guildwars2wrapper.model.v2.util.comm.Type;

/**
 * For more info on Consumable detail API go here
* Item detail for consumable * * @author xhsun * @see ItemDetail item details * @since 2017-02-10 */ public class Consumable extends ItemDetail { public String getIcon() { return icon; } public int getApplyCount() { return apply_count; } public Type getType() { return type; } public String getDescription() { return description; } public long getDuration() { return duration_ms; } public Unlock getUnlockType() { return unlock_type; } public int getColorID() { return color_id; } public int getRecipeID() { return recipe_id; } private String getName() { return name; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy