com.ebay.sell.inventory.offers.models.PricingSummary Maven / Gradle / Ivy
package com.ebay.sell.inventory.offers.models;
public class PricingSummary {
private Amount price;
public Amount getPrice() {
return price;
}
public void setPrice(Amount price) {
this.price = price;
}
}