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.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="sessionId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="creditmemoIncrementId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="notifyCustomer" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* <element name="includeComment" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sessionId",
"creditmemoIncrementId",
"comment",
"notifyCustomer",
"includeComment"
})
@XmlRootElement(name = "salesOrderCreditmemoAddCommentRequestParam")
public class SalesOrderCreditmemoAddCommentRequestParam {
@XmlElement(required = true)
protected String sessionId;
@XmlElement(required = true)
protected String creditmemoIncrementId;
@XmlElement(required = true)
protected String comment;
protected Integer notifyCustomer;
protected Integer includeComment;
/**
* Gets the value of the sessionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSessionId() {
return sessionId;
}
/**
* Sets the value of the sessionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSessionId(String value) {
this.sessionId = value;
}
/**
* Gets the value of the creditmemoIncrementId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCreditmemoIncrementId() {
return creditmemoIncrementId;
}
/**
* Sets the value of the creditmemoIncrementId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreditmemoIncrementId(String value) {
this.creditmemoIncrementId = 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 notifyCustomer property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getNotifyCustomer() {
return notifyCustomer;
}
/**
* Sets the value of the notifyCustomer property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setNotifyCustomer(Integer value) {
this.notifyCustomer = value;
}
/**
* Gets the value of the includeComment property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getIncludeComment() {
return includeComment;
}
/**
* Sets the value of the includeComment property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setIncludeComment(Integer value) {
this.includeComment = value;
}
}