All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.swconsultoria.mdfe.schema_300.evCancMDFe.EvCancMDFe Maven / Gradle / Ivy

The newest version!

package br.com.swconsultoria.mdfe.schema_300.evCancMDFe;

import javax.xml.bind.annotation.*;


/**
 * 

Classe Java de anonymous complex type. * *

O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="descEvento">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <whiteSpace value="preserve"/>
 *               <enumeration value="Cancelamento"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="nProt" type="{http://www.portalfiscal.inf.br/mdfe}TProt"/>
 *         <element name="xJust" type="{http://www.portalfiscal.inf.br/mdfe}TJust"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "descEvento", "nProt", "xJust" }) @XmlRootElement(name = "evCancMDFe", namespace = "http://www.portalfiscal.inf.br/mdfe") public class EvCancMDFe { @XmlElement(namespace = "http://www.portalfiscal.inf.br/mdfe", required = true) protected String descEvento; @XmlElement(namespace = "http://www.portalfiscal.inf.br/mdfe", required = true) protected String nProt; @XmlElement(namespace = "http://www.portalfiscal.inf.br/mdfe", required = true) protected String xJust; /** * Obtém o valor da propriedade descEvento. * * @return possible object is * {@link String } */ public String getDescEvento() { return descEvento; } /** * Define o valor da propriedade descEvento. * * @param value allowed object is * {@link String } */ public void setDescEvento(String value) { this.descEvento = value; } /** * Obtém o valor da propriedade nProt. * * @return possible object is * {@link String } */ public String getNProt() { return nProt; } /** * Define o valor da propriedade nProt. * * @param value allowed object is * {@link String } */ public void setNProt(String value) { this.nProt = value; } /** * Obtém o valor da propriedade xJust. * * @return possible object is * {@link String } */ public String getXJust() { return xJust; } /** * Define o valor da propriedade xJust. * * @param value allowed object is * {@link String } */ public void setXJust(String value) { this.xJust = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy