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

br.com.swconsultoria.mdfe.schema_300.retConsSitMDFe.TConsSitMDFe Maven / Gradle / Ivy

The newest version!

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

import javax.xml.bind.annotation.*;


/**
 * Tipo Pedido de Consulta da Situação Atual do MDF-e
 *
 * 

Classe Java de TConsSitMDFe complex type. * *

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

 * <complexType name="TConsSitMDFe">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="tpAmb" type="{http://www.portalfiscal.inf.br/mdfe}TAmb"/>
 *         <element name="xServ" type="{http://www.portalfiscal.inf.br/mdfe}TServ"/>
 *         <element name="chMDFe" type="{http://www.portalfiscal.inf.br/mdfe}TChNFe"/>
 *       </sequence>
 *       <attribute name="versao" use="required">
 *         <simpleType>
 *           <restriction base="{http://www.portalfiscal.inf.br/mdfe}TVerConsSitMDFe">
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TConsSitMDFe", namespace = "http://www.portalfiscal.inf.br/mdfe", propOrder = { "tpAmb", "xServ", "chMDFe" }) public class TConsSitMDFe { @XmlElement(required = true) protected String tpAmb; @XmlElement(required = true) protected String xServ; @XmlElement(required = true) protected String chMDFe; @XmlAttribute(name = "versao", required = true) 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 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 chMDFe. * * @return possible object is * {@link String } */ public String getChMDFe() { return chMDFe; } /** * Define o valor da propriedade chMDFe. * * @param value allowed object is * {@link String } */ public void setChMDFe(String value) { this.chMDFe = 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy