// // Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 // Consulte http://java.sun.com/xml/jaxb // Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. // Gerado em: 2017.10.24 às 07:38:45 PM BRST // package br.inf.portalfiscal.bpe; 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; /** * Tipo Pedido de Consulta da Situação Atual do Bilhete de Passagem Eletrônico * *
Classe Java de TConsSitBPe complex type. * *
O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe. * *
* <complexType name="TConsSitBPe"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="tpAmb" type="{http://www.portalfiscal.inf.br/bpe}TAmb"/> * <element name="xServ" type="{http://www.portalfiscal.inf.br/bpe}TServ"/> * <element name="chBPe" type="{http://www.portalfiscal.inf.br/bpe}TChDFe"/> * </sequence> * <attribute name="versao" use="required" type="{http://www.portalfiscal.inf.br/bpe}TVerConsSitBPe" /> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TConsSitBPe", propOrder = { "tpAmb", "xServ", "chBPe" }) public class TConsSitBPe { @XmlElement(required = true) protected String tpAmb; @XmlElement(required = true) protected String xServ; @XmlElement(required = true) protected String chBPe; @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 chBPe. * * @return * possible object is * {@link String } * */ public String getChBPe() { return chBPe; } /** * Define o valor da propriedade chBPe. * * @param value * allowed object is * {@link String } * */ public void setChBPe(String value) { this.chBPe = 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; } }