All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.xhsun.guildwars2wrapper.model.v2.commerce.Delivery Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
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