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 salesOrderShipmentCommentEntity complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="salesOrderShipmentCommentEntity"> * <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="comment" 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="comment_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "salesOrderShipmentCommentEntity", propOrder = { "incrementId", "parentId", "createdAt", "updatedAt", "isActive", "comment", "isCustomerNotified", "commentId" }) public class SalesOrderShipmentCommentEntity { @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; protected String comment; @XmlElement(name = "is_customer_notified") protected String isCustomerNotified; @XmlElement(name = "comment_id") protected String commentId; /** * 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 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; } /** * 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 commentId property. * * @return * possible object is * {@link String } * */ public String getCommentId() { return commentId; } /** * Sets the value of the commentId property. * * @param value * allowed object is * {@link String } * */ public void setCommentId(String value) { this.commentId = value; } }