// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.05.03 at 05:21:27 PM BRT // package br.com.caelum.stella.nfe.xsd.recepcao; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * Tipo Dados do Local de Retirada ou Entrega // 24/10/08 - tamanho mínimo // v2.0 * * <p>Java class for TLocal complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="TLocal"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <choice> * <element name="CNPJ" type="{http://www.portalfiscal.inf.br/nfe}TCnpjOpc"/> * <element name="CPF" type="{http://www.portalfiscal.inf.br/nfe}TCpf"/> * </choice> * <element name="xLgr"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <maxLength value="60"/> * <minLength value="2"/> * </restriction> * </simpleType> * </element> * <element name="nro"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <maxLength value="60"/> * <minLength value="1"/> * </restriction> * </simpleType> * </element> * <element name="xCpl" minOccurs="0"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <maxLength value="60"/> * <minLength value="1"/> * </restriction> * </simpleType> * </element> * <element name="xBairro"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <maxLength value="60"/> * <minLength value="1"/> * </restriction> * </simpleType> * </element> * <element name="cMun" type="{http://www.portalfiscal.inf.br/nfe}TCodMunIBGE"/> * <element name="xMun"> * <simpleType> * <restriction base="{http://www.portalfiscal.inf.br/nfe}TString"> * <maxLength value="60"/> * <minLength value="2"/> * </restriction> * </simpleType> * </element> * <element name="UF" type="{http://www.portalfiscal.inf.br/nfe}TUf"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TLocal", propOrder = { "cnpj", "cpf", "xLgr", "nro", "xCpl", "xBairro", "cMun", "xMun", "uf" }) public class TLocal { @XmlElement(name = "CNPJ") protected String cnpj; @XmlElement(name = "CPF") protected String cpf; @XmlElement(required = true) protected String xLgr; @XmlElement(required = true) protected String nro; protected String xCpl; @XmlElement(required = true) protected String xBairro; @XmlElement(required = true) protected String cMun; @XmlElement(required = true) protected String xMun; @XmlElement(name = "UF", required = true) protected TUf uf; /** * Gets the value of the cnpj property. * * @return * possible object is * {@link String } * */ public String getCNPJ() { return cnpj; } /** * Sets the value of the cnpj property. * * @param value * allowed object is * {@link String } * */ public void setCNPJ(String value) { this.cnpj = value; } /** * Gets the value of the cpf property. * * @return * possible object is * {@link String } * */ public String getCPF() { return cpf; } /** * Sets the value of the cpf property. * * @param value * allowed object is * {@link String } * */ public void setCPF(String value) { this.cpf = value; } /** * Gets the value of the xLgr property. * * @return * possible object is * {@link String } * */ public String getXLgr() { return xLgr; } /** * Sets the value of the xLgr property. * * @param value * allowed object is * {@link String } * */ public void setXLgr(String value) { this.xLgr = value; } /** * Gets the value of the nro property. * * @return * possible object is * {@link String } * */ public String getNro() { return nro; } /** * Sets the value of the nro property. * * @param value * allowed object is * {@link String } * */ public void setNro(String value) { this.nro = value; } /** * Gets the value of the xCpl property. * * @return * possible object is * {@link String } * */ public String getXCpl() { return xCpl; } /** * Sets the value of the xCpl property. * * @param value * allowed object is * {@link String } * */ public void setXCpl(String value) { this.xCpl = value; } /** * Gets the value of the xBairro property. * * @return * possible object is * {@link String } * */ public String getXBairro() { return xBairro; } /** * Sets the value of the xBairro property. * * @param value * allowed object is * {@link String } * */ public void setXBairro(String value) { this.xBairro = value; } /** * Gets the value of the cMun property. * * @return * possible object is * {@link String } * */ public String getCMun() { return cMun; } /** * Sets the value of the cMun property. * * @param value * allowed object is * {@link String } * */ public void setCMun(String value) { this.cMun = value; } /** * Gets the value of the xMun property. * * @return * possible object is * {@link String } * */ public String getXMun() { return xMun; } /** * Sets the value of the xMun property. * * @param value * allowed object is * {@link String } * */ public void setXMun(String value) { this.xMun = value; } /** * Gets the value of the uf property. * * @return * possible object is * {@link TUf } * */ public TUf getUF() { return uf; } /** * Sets the value of the uf property. * * @param value * allowed object is * {@link TUf } * */ public void setUF(TUf value) { this.uf = value; } }