com.shopify.model.ShopifyInventoryLevel Maven / Gradle / Ivy
package com.shopify.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class ShopifyInventoryLevel {
@XmlElement(name = "inventory_item_id")
private String inventoryItemId;
@XmlElement(name = "location_id")
private String locationId;
private long available;
public String getInventoryItemId() {
return inventoryItemId;
}
public void setInventoryItemId(final String inventoryItemId) {
this.inventoryItemId = inventoryItemId;
}
public String getLocationId() {
return locationId;
}
public void setLocationId(final String locationId) {
this.locationId = locationId;
}
public long getAvailable() {
return available;
}
public void setAvailable(final long available) {
this.available = available;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy