com.ebay.sell.account.policies.models.FulfillmentPolicies 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.account.policies.models;
import java.util.LinkedList;
import java.util.List;
public class FulfillmentPolicies {
private int total;
private List fulfillmentPolicies = new LinkedList<>();
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public List getFulfillmentPolicies() {
return fulfillmentPolicies;
}
public void setFulfillmentPolicies(List fulfillmentPolicies) {
this.fulfillmentPolicies = fulfillmentPolicies;
}
}