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

me.xhsun.guildwars2wrapper.model.v2.commerce.Prices 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 me.xhsun.guildwars2wrapper.model.v2.Item;

/**
 * For more info on Listing Price API go here
* TP prices info model class
* Note: the unit price is in coins * * @author xhsun * @see Item Item id * @see Prices buy/sell price * @since 2017-02-07 */ public class Prices extends IdentifiableInt { private boolean whitelisted; private Price buys, sells; public boolean isWhitelisted() { return whitelisted; } public Price getBuys() { return buys; } public Price getSells() { return sells; } /** * Price model for Prices class * * @author xhsun * @since 2017-02-07 */ public class Price { private long listings, unit_price, quantity; public long getListings() { return listings; } public long getUnitPrice() { return unit_price; } public long getQuantity() { return quantity; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy