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 shoppingCartLicenseEntity complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="shoppingCartLicenseEntity"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="agreement_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="content" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="is_active" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="is_html" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "shoppingCartLicenseEntity", propOrder = { "agreementId", "name", "content", "isActive", "isHtml" }) public class ShoppingCartLicenseEntity { @XmlElement(name = "agreement_id") protected String agreementId; protected String name; protected String content; @XmlElement(name = "is_active") protected Integer isActive; @XmlElement(name = "is_html") protected Integer isHtml; /** * Gets the value of the agreementId property. * * @return * possible object is * {@link String } * */ public String getAgreementId() { return agreementId; } /** * Sets the value of the agreementId property. * * @param value * allowed object is * {@link String } * */ public void setAgreementId(String value) { this.agreementId = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the content property. * * @return * possible object is * {@link String } * */ public String getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * {@link String } * */ public void setContent(String value) { this.content = value; } /** * Gets the value of the isActive property. * * @return * possible object is * {@link Integer } * */ public Integer getIsActive() { return isActive; } /** * Sets the value of the isActive property. * * @param value * allowed object is * {@link Integer } * */ public void setIsActive(Integer value) { this.isActive = value; } /** * Gets the value of the isHtml property. * * @return * possible object is * {@link Integer } * */ public Integer getIsHtml() { return isHtml; } /** * Sets the value of the isHtml property. * * @param value * allowed object is * {@link Integer } * */ public void setIsHtml(Integer value) { this.isHtml = value; } }