package com.titanic.ventapasajes.ws; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for HConductor complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="HConductor"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="TpoDocumento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="NroDocumento" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="FecInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="HorInicio" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="FecTermino" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="HorTermino" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HConductor", propOrder = { "tpoDocumento", "nroDocumento", "fecInicio", "horInicio", "fecTermino", "horTermino" }) public class HConductor { @XmlElement(name = "TpoDocumento") protected String tpoDocumento; @XmlElement(name = "NroDocumento") protected String nroDocumento; @XmlElement(name = "FecInicio") protected String fecInicio; @XmlElement(name = "HorInicio") protected String horInicio; @XmlElement(name = "FecTermino") protected String fecTermino; @XmlElement(name = "HorTermino") protected String horTermino; /** * Gets the value of the tpoDocumento property. * * @return * possible object is * {@link String } * */ public String getTpoDocumento() { return tpoDocumento; } /** * Sets the value of the tpoDocumento property. * * @param value * allowed object is * {@link String } * */ public void setTpoDocumento(String value) { this.tpoDocumento = value; } /** * Gets the value of the nroDocumento property. * * @return * possible object is * {@link String } * */ public String getNroDocumento() { return nroDocumento; } /** * Sets the value of the nroDocumento property. * * @param value * allowed object is * {@link String } * */ public void setNroDocumento(String value) { this.nroDocumento = value; } /** * Gets the value of the fecInicio property. * * @return * possible object is * {@link String } * */ public String getFecInicio() { return fecInicio; } /** * Sets the value of the fecInicio property. * * @param value * allowed object is * {@link String } * */ public void setFecInicio(String value) { this.fecInicio = value; } /** * Gets the value of the horInicio property. * * @return * possible object is * {@link String } * */ public String getHorInicio() { return horInicio; } /** * Sets the value of the horInicio property. * * @param value * allowed object is * {@link String } * */ public void setHorInicio(String value) { this.horInicio = value; } /** * Gets the value of the fecTermino property. * * @return * possible object is * {@link String } * */ public String getFecTermino() { return fecTermino; } /** * Sets the value of the fecTermino property. * * @param value * allowed object is * {@link String } * */ public void setFecTermino(String value) { this.fecTermino = value; } /** * Gets the value of the horTermino property. * * @return * possible object is * {@link String } * */ public String getHorTermino() { return horTermino; } /** * Sets the value of the horTermino property. * * @param value * allowed object is * {@link String } * */ public void setHorTermino(String value) { this.horTermino = value; } }