com.ebay.sell.inventory.inventoryitemgroups.models.Specification 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.inventoryitemgroups.models;
import java.util.LinkedList;
import java.util.List;
public class Specification {
private String name;
private List values = new LinkedList<>();
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List getValues() {
return values;
}
public void setValues(List values) {
this.values = values;
}
}