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 directoryCountryEntity complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="directoryCountryEntity">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="country_id" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="iso2_code" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="iso3_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 = "directoryCountryEntity", propOrder = {
"countryId",
"iso2Code",
"iso3Code",
"name"
})
public class DirectoryCountryEntity {
@XmlElement(name = "country_id", required = true)
protected String countryId;
@XmlElement(name = "iso2_code", required = true)
protected String iso2Code;
@XmlElement(name = "iso3_code", required = true)
protected String iso3Code;
@XmlElement(required = true)
protected String name;
/**
* Gets the value of the countryId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountryId() {
return countryId;
}
/**
* Sets the value of the countryId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountryId(String value) {
this.countryId = value;
}
/**
* Gets the value of the iso2Code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIso2Code() {
return iso2Code;
}
/**
* Sets the value of the iso2Code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIso2Code(String value) {
this.iso2Code = value;
}
/**
* Gets the value of the iso3Code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIso3Code() {
return iso3Code;
}
/**
* Sets the value of the iso3Code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIso3Code(String value) {
this.iso3Code = 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;
}
}