package com.sitewhere.assetmodule.magento.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for salesOrderStatusHistoryEntity complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="salesOrderStatusHistoryEntity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="increment_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="parent_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="created_at" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="updated_at" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="is_active" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="is_customer_notified" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="status" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "salesOrderStatusHistoryEntity", propOrder = {
"incrementId",
"parentId",
"createdAt",
"updatedAt",
"isActive",
"isCustomerNotified",
"status",
"comment"
})
public class SalesOrderStatusHistoryEntity {
@XmlElement(name = "increment_id")
protected String incrementId;
@XmlElement(name = "parent_id")
protected String parentId;
@XmlElement(name = "created_at")
protected String createdAt;
@XmlElement(name = "updated_at")
protected String updatedAt;
@XmlElement(name = "is_active")
protected String isActive;
@XmlElement(name = "is_customer_notified")
protected String isCustomerNotified;
protected String status;
protected String comment;
/**
* Gets the value of the incrementId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIncrementId() {
return incrementId;
}
/**
* Sets the value of the incrementId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIncrementId(String value) {
this.incrementId = value;
}
/**
* Gets the value of the parentId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getParentId() {
return parentId;
}
/**
* Sets the value of the parentId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setParentId(String value) {
this.parentId = value;
}
/**
* Gets the value of the createdAt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCreatedAt() {
return createdAt;
}
/**
* Sets the value of the createdAt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreatedAt(String value) {
this.createdAt = value;
}
/**
* Gets the value of the updatedAt property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUpdatedAt() {
return updatedAt;
}
/**
* Sets the value of the updatedAt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUpdatedAt(String value) {
this.updatedAt = value;
}
/**
* Gets the value of the isActive property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsActive() {
return isActive;
}
/**
* Sets the value of the isActive property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsActive(String value) {
this.isActive = value;
}
/**
* Gets the value of the isCustomerNotified property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIsCustomerNotified() {
return isCustomerNotified;
}
/**
* Sets the value of the isCustomerNotified property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIsCustomerNotified(String value) {
this.isCustomerNotified = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStatus(String value) {
this.status = value;
}
/**
* Gets the value of the comment property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getComment() {
return comment;
}
/**
* Sets the value of the comment property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setComment(String value) {
this.comment = value;
}
}