com.ebay.sell.inventory.inventoryitemgroups.models.VariesBy 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 VariesBy {
private List specifications = new LinkedList<>();
private List aspectsImageVariesBy = new LinkedList<>();
public List getSpecifications() {
return specifications;
}
public void setSpecifications(List specifications) {
this.specifications = specifications;
}
public List getAspectsImageVariesBy() {
return aspectsImageVariesBy;
}
public void setAspectsImageVariesBy(List aspectsImageVariesBy) {
this.aspectsImageVariesBy = aspectsImageVariesBy;
}
}