nl.pvanassen.steam.store.history.History Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of steam-api Show documentation
Show all versions of steam-api Show documentation
A Java API to access the Steam community market through the HTTP interface. This may be against the TOS so be careful using it!
The newest version!
package nl.pvanassen.steam.store.history;
import java.util.List;
/**
* Bean object containing information about the history of sales and purchases
* of a user
*
* @author Paul van Assen
*/
public class History {
private final List purchases;
private final List sales;
private final List listingsCreated;
private final List listingsRemoved;
private final String latestRowId;
History(List purchases, List sales, List listingsCreated, List listingsRemoved, String latestRowId) {
super();
this.purchases = purchases;
this.sales = sales;
this.listingsCreated = listingsCreated;
this.listingsRemoved = listingsRemoved;
this.latestRowId = latestRowId;
}
/**
* @return The most recent row id parsed
*/
public String getLatestRowId() {
return latestRowId;
}
/**
* @return the listingsCreated
*/
public List getListingsCreated() {
return listingsCreated;
}
/**
* @return the listingsRemoved
*/
public List getListingsRemoved() {
return listingsRemoved;
}
/**
* @return the purchases
*/
public List getPurchases() {
return purchases;
}
/**
* @return the sales
*/
public List getSales() {
return sales;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy