me.xhsun.guildwars2wrapper.model.v2.util.itemDetail.Consumable 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.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