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

ar.com.system.afip.wsfe.service.api.FETributoResponse 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 FETributoResponse complex type.
 *
 *
 * El siguiente fragmento de esquema especifica el contenido que se espera que
 * haya en esta clase.
 *
 * 
 * <complexType name="FETributoResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ResultGet" type="{http://ar.gov.afip.dif.FEV1/}ArrayOfTributoTipo" minOccurs="0"/>
 *         <element name="Errors" type="{http://ar.gov.afip.dif.FEV1/}ArrayOfErr" minOccurs="0"/>
 *         <element name="Events" type="{http://ar.gov.afip.dif.FEV1/}ArrayOfEvt" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FETributoResponse", propOrder = {"resultGet", "errors", "events"}) public class FETributoResponse implements HasErrors { @XmlElement(name = "ResultGet") @Element(name = "ResultGet", required = false) protected ArrayOfTributoTipo resultGet; @XmlElement(name = "Errors") @Element(name = "Errors", required = false) protected ArrayOfErr errors; @XmlElement(name = "Events") @Element(name = "Events", required = false) protected ArrayOfEvt events; /** * Obtiene el valor de la propiedad resultGet. * * @return possible object is {@link ArrayOfTributoTipo } */ public ArrayOfTributoTipo getResultGet() { return resultGet; } /** * Define el valor de la propiedad resultGet. * * @param value allowed object is {@link ArrayOfTributoTipo } */ public void setResultGet(ArrayOfTributoTipo value) { this.resultGet = value; } /** * Obtiene el valor de la propiedad errors. * * @return possible object is {@link ArrayOfErr } */ public ArrayOfErr getErrors() { return errors; } /** * Define el valor de la propiedad errors. * * @param value allowed object is {@link ArrayOfErr } */ public void setErrors(ArrayOfErr value) { this.errors = value; } /** * Obtiene el valor de la propiedad events. * * @return possible object is {@link ArrayOfEvt } */ public ArrayOfEvt getEvents() { return events; } /** * Define el valor de la propiedad events. * * @param value allowed object is {@link ArrayOfEvt } */ public void setEvents(ArrayOfEvt value) { this.events = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy