me.xhsun.guildwars2wrapper.model.v2.character.CharacterTraining 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.character;
import me.xhsun.guildwars2wrapper.model.identifiable.IdentifiableInt;
import me.xhsun.guildwars2wrapper.model.v2.Profession;
import java.util.List;
/**
* For more info on character training API go here
* Model class for character training
* @see Profession.Training
* @author xhsun
* @since 2017-06-07
*/
public class CharacterTraining {
private List training;
public List getTraining() {
return training;
}
public class Training extends IdentifiableInt {
private int spent;
private boolean done;
public int getSpent() {
return spent;
}
public boolean isDone() {
return done;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy