me.xhsun.guildwars2wrapper.model.v2.commerce.Delivery 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.commerce;
import me.xhsun.guildwars2wrapper.model.identifiable.IdentifiableInt;
import java.util.List;
/**
* For more info on delivery API go here
* TP delivery info model class
* TODO No testing yet, use with caution
*
* @author xhsun
* @since 2017-02-19
*/
public class Delivery {
private long coins;
private List- items;
public long getCoins() {
return coins;
}
public List
- getItems() {
return items;
}
public class Item extends IdentifiableInt {
private int count;
public int getCount() {
return count;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy