com.ebay.sell.inventory.offers.models.Offers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebay-sdk Show documentation
Show all versions of ebay-sdk Show documentation
Java SDK for eBay REST APIs
package com.ebay.sell.inventory.offers.models;
import java.util.LinkedList;
import java.util.List;
public class Offers {
private int total;
private int size;
private String href;
private String next;
private int limit;
private List offers = new LinkedList<>();
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public int getSize() {
return size;
}
public void setSize(int size) {
this.size = size;
}
public String getHref() {
return href;
}
public void setHref(String href) {
this.href = href;
}
public String getNext() {
return next;
}
public void setNext(String next) {
this.next = next;
}
public int getLimit() {
return limit;
}
public void setLimit(int limit) {
this.limit = limit;
}
public List getOffers() {
return offers;
}
public void setOffers(List offers) {
this.offers = offers;
}
}