com.ebay.sell.inventory.locations.models.InventoryLocation 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.locations.models;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class InventoryLocation {
private String merchantLocationKey;
private String merchantLocationStatus;
private String name;
private Location location;
public String getMerchantLocationKey() {
return merchantLocationKey;
}
public void setMerchantLocationKey(String merchantLocationKey) {
this.merchantLocationKey = merchantLocationKey;
}
public String getMerchantLocationStatus() {
return merchantLocationStatus;
}
public void setMerchantLocationStatus(String merchantLocationStatus) {
this.merchantLocationStatus = merchantLocationStatus;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Location getLocation() {
return location;
}
public void setLocation(Location location) {
this.location = location;
}
}