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

ar.com.system.afip.wsfe.service.api.CbteAsoc Maven / Gradle / Ivy

package ar.com.system.afip.wsfe.service.api;

import org.simpleframework.xml.Element;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;

/**
 *
 * Clase Java para CbteAsoc complex type.
 *
 *
 * El siguiente fragmento de esquema especifica el contenido que se espera que
 * haya en esta clase.
 *
 * 
 * <complexType name="CbteAsoc">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Tipo" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="PtoVta" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="Nro" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CbteAsoc", propOrder = {"tipo", "ptoVta", "nro"}) public class CbteAsoc { @XmlElement(name = "Tipo") @Element(name = "Tipo") protected int tipo; @XmlElement(name = "PtoVta") @Element(name = "PtoVta") protected int ptoVta; @XmlElement(name = "Nro") @Element(name = "Nro") protected long nro; /** * Obtiene el valor de la propiedad tipo. */ public int getTipo() { return tipo; } /** * Define el valor de la propiedad tipo. */ public void setTipo(int value) { this.tipo = value; } /** * Obtiene el valor de la propiedad ptoVta. */ public int getPtoVta() { return ptoVta; } /** * Define el valor de la propiedad ptoVta. */ public void setPtoVta(int value) { this.ptoVta = value; } /** * Obtiene el valor de la propiedad nro. */ public long getNro() { return nro; } /** * Define el valor de la propiedad nro. */ public void setNro(long value) { this.nro = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy