me.xhsun.guildwars2wrapper.model.v2.character.CharacterSAB 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.identifiable.NameableInt;
import java.util.List;
/**
* For more info on character SAB API go here
* Model class for character SAB
*
* @author xhsun
* @since 2017-06-07
*/
public class CharacterSAB {
private List zones;
private List unlocks, songs;
public List getZones() {
return zones;
}
public List getUnlocks() {
return unlocks;
}
public List getSongs() {
return songs;
}
public class Zone extends IdentifiableInt {
private String mode;
private int world, zone;
public String getMode() {
return mode;
}
public int getWorld() {
return world;
}
public int getZone() {
return zone;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy