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