All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ebay.sell.inventory.locations.models.InventoryLocation Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy