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

com.ebay.sell.account.policies.models.PaymentPolicies 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 PaymentPolicies {

	private int total;
	private List paymentPolicies = new LinkedList<>();

	public int getTotal() {
		return total;
	}

	public void setTotal(int total) {
		this.total = total;
	}

	public List getPaymentPolicies() {
		return paymentPolicies;
	}

	public void setPaymentPolicies(List paymentPolicies) {
		this.paymentPolicies = paymentPolicies;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy