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 directoryRegionEntity complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="directoryRegionEntity"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="region_id" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "directoryRegionEntity", propOrder = { "regionId", "code", "name" }) public class DirectoryRegionEntity { @XmlElement(name = "region_id", required = true) protected String regionId; @XmlElement(required = true) protected String code; @XmlElement(required = true) protected String name; /** * Gets the value of the regionId property. * * @return * possible object is * {@link String } * */ public String getRegionId() { return regionId; } /** * Sets the value of the regionId property. * * @param value * allowed object is * {@link String } * */ public void setRegionId(String value) { this.regionId = value; } /** * Gets the value of the code property. * * @return * possible object is * {@link String } * */ public String getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link String } * */ public void setCode(String value) { this.code = 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; } }