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 HTripulante complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="HTripulante"> * <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"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HTripulante", propOrder = { "tpoDocumento", "nroDocumento" }) public class HTripulante { @XmlElement(name = "TpoDocumento") protected String tpoDocumento; @XmlElement(name = "NroDocumento") protected String nroDocumento; /** * 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; } }