me.xhsun.guildwars2wrapper.model.v2.util.itemDetail.UpgradeComponent 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;
import me.xhsun.guildwars2wrapper.model.v2.util.itemDetail.subobject.InfixUpgrade;
import java.util.List;
/**
* For more info on upgrade component detail API go here
*
* @author xhsun
* @since 2017-06-07
*/
public class UpgradeComponent extends ItemDetail {
public Type getType() {
return type;
}
public List getFlags() {
return flags;
}
public List getInfusionUpgradeFlags() {
return infusion_upgrade_flags;
}
public String getSuffix() {
return suffix;
}
public InfixUpgrade getInfixUpgrade() {
return infix_upgrade;
}
public List getBonuses() {
return bonuses;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy