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

com.ebay.sell.account.policies.models.FulfillmentPolicies Maven / Gradle / Ivy

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy