br.com.swconsultoria.nfe.schema.envEventoCancSubst.TProcEvento Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-nfe Show documentation
Show all versions of java-nfe Show documentation
Api java para consumo do webService de nota fiscal eletronica
package br.com.swconsultoria.nfe.schema.envEventoCancSubst;
import javax.xml.bind.annotation.*;
/**
* Tipo procEvento
*
* Classe Java de TProcEvento complex type.
*
*
O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
*
* <complexType name="TProcEvento">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="evento" type="{http://www.portalfiscal.inf.br/nfe}TEvento"/>
* <element name="retEvento" type="{http://www.portalfiscal.inf.br/nfe}TRetEvento"/>
* </sequence>
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/nfe}TVerEvento" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TProcEvento", namespace = "http://www.portalfiscal.inf.br/nfe", propOrder = {
"evento",
"retEvento"
})
public class TProcEvento {
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
protected TEvento evento;
@XmlElement(namespace = "http://www.portalfiscal.inf.br/nfe", required = true)
protected TRetEvento retEvento;
@XmlAttribute(name = "versao", required = true)
protected String versao;
/**
* Obtém o valor da propriedade evento.
*
* @return
* possible object is
* {@link TEvento }
*
*/
public TEvento getEvento() {
return evento;
}
/**
* Define o valor da propriedade evento.
*
* @param value
* allowed object is
* {@link TEvento }
*
*/
public void setEvento(TEvento value) {
this.evento = value;
}
/**
* Obtém o valor da propriedade retEvento.
*
* @return
* possible object is
* {@link TRetEvento }
*
*/
public TRetEvento getRetEvento() {
return retEvento;
}
/**
* Define o valor da propriedade retEvento.
*
* @param value
* allowed object is
* {@link TRetEvento }
*
*/
public void setRetEvento(TRetEvento value) {
this.retEvento = value;
}
/**
* Obtém o valor da propriedade versao.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersao() {
return versao;
}
/**
* Define o valor da propriedade versao.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersao(String value) {
this.versao = value;
}
}