package com.thesecretserver.service; 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 CodeResponse complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CodeResponse"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ErrorCode" 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="AdditionalComment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="TicketSystemId" type="{http://www.w3.org/2001/XMLSchema}int"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CodeResponse", propOrder = { "errorCode", "comment", "additionalComment", "ticketSystemId" }) public class CodeResponse { @XmlElement(name = "ErrorCode") protected String errorCode; @XmlElement(name = "Comment") protected String comment; @XmlElement(name = "AdditionalComment") protected String additionalComment; @XmlElement(name = "TicketSystemId", required = true, type = Integer.class, nillable = true) protected Integer ticketSystemId; /** * Gets the value of the errorCode property. * * @return * possible object is * {@link String } * */ public String getErrorCode() { return errorCode; } /** * Sets the value of the errorCode property. * * @param value * allowed object is * {@link String } * */ public void setErrorCode(String value) { this.errorCode = 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 additionalComment property. * * @return * possible object is * {@link String } * */ public String getAdditionalComment() { return additionalComment; } /** * Sets the value of the additionalComment property. * * @param value * allowed object is * {@link String } * */ public void setAdditionalComment(String value) { this.additionalComment = value; } /** * Gets the value of the ticketSystemId property. * * @return * possible object is * {@link Integer } * */ public Integer getTicketSystemId() { return ticketSystemId; } /** * Sets the value of the ticketSystemId property. * * @param value * allowed object is * {@link Integer } * */ public void setTicketSystemId(Integer value) { this.ticketSystemId = value; } }