package com.sitewhere.assetmodule.magento.ws; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for giftMessageResponse complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="giftMessageResponse"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="entityId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="result" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * <element name="error" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "giftMessageResponse", propOrder = { "entityId", "result", "error" }) public class GiftMessageResponse { protected String entityId; protected Boolean result; protected String error; /** * Gets the value of the entityId property. * * @return * possible object is * {@link String } * */ public String getEntityId() { return entityId; } /** * Sets the value of the entityId property. * * @param value * allowed object is * {@link String } * */ public void setEntityId(String value) { this.entityId = value; } /** * Gets the value of the result property. * * @return * possible object is * {@link Boolean } * */ public Boolean isResult() { return result; } /** * Sets the value of the result property. * * @param value * allowed object is * {@link Boolean } * */ public void setResult(Boolean value) { this.result = value; } /** * Gets the value of the error property. * * @return * possible object is * {@link String } * */ public String getError() { return error; } /** * Sets the value of the error property. * * @param value * allowed object is * {@link String } * */ public void setError(String value) { this.error = value; } }