package camelinaction.inventory;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="supplierId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="partId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="amount" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"supplierId",
"partId",
"name",
"amount"
})
@XmlRootElement(name = "updateInventoryInput")
public class UpdateInventoryInput {
@XmlElement(required = true)
protected String supplierId;
@XmlElement(required = true)
protected String partId;
@XmlElement(required = true)
protected String name;
@XmlElement(required = true)
protected String amount;
/**
* Gets the value of the supplierId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSupplierId() {
return supplierId;
}
/**
* Sets the value of the supplierId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSupplierId(String value) {
this.supplierId = value;
}
/**
* Gets the value of the partId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPartId() {
return partId;
}
/**
* Sets the value of the partId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPartId(String value) {
this.partId = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the amount property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAmount() {
return amount;
}
/**
* Sets the value of the amount property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAmount(String value) {
this.amount = value;
}
}