com.ebay.sell.inventory.offers.models.Amount 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;
public class Amount {
private String currency;
private String value;
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}