Blame |
Last modification |
View Log
| Download
| RSS feed
package br.com.swconsultoria.nfe.schema_4.retConsStatServ;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Tipo Pedido de Consulta do Status do Serviço
*
* <p>Classe Java de TConsStatServ complex type.
*
* <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
*
* <pre>
* <complexType name="TConsStatServ">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="tpAmb" type="{http://www.portalfiscal.inf.br/nfe}TAmb"/>
* <element name="cUF" type="{http://www.portalfiscal.inf.br/nfe}TCodUfIBGE"/>
* <element name="xServ">
* <simpleType>
* <restriction base="{http://www.portalfiscal.inf.br/nfe}TServ">
* <enumeration value="STATUS"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/nfe}TVerConsStatServ" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType
(XmlAccessType.
FIELD)
@XmlType
(name =
"TConsStatServ", namespace =
"http://www.portalfiscal.inf.br/nfe", propOrder =
{
"tpAmb",
"cuf",
"xServ"
})
public class TConsStatServ
{
@XmlElement
(namespace =
"http://www.portalfiscal.inf.br/nfe", required =
true)
protected String tpAmb
;
@XmlElement
(name =
"cUF", namespace =
"http://www.portalfiscal.inf.br/nfe", required =
true)
protected String cuf
;
@XmlElement
(namespace =
"http://www.portalfiscal.inf.br/nfe", required =
true)
protected String xServ
;
@XmlAttribute
(name =
"versao", required =
true)
@XmlJavaTypeAdapter
(CollapsedStringAdapter.
class)
protected String versao
;
/**
* Obtém o valor da propriedade tpAmb.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTpAmb
() {
return tpAmb
;
}
/**
* Define o valor da propriedade tpAmb.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTpAmb
(String value
) {
this.
tpAmb = value
;
}
/**
* Obtém o valor da propriedade cuf.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCUF
() {
return cuf
;
}
/**
* Define o valor da propriedade cuf.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCUF
(String value
) {
this.
cuf = value
;
}
/**
* Obtém o valor da propriedade xServ.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXServ
() {
return xServ
;
}
/**
* Define o valor da propriedade xServ.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXServ
(String value
) {
this.
xServ = 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
;
}
}