
ar.com.system.afip.wsfe.service.api.FECAEDetResponse 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 FECAEDetResponse complex type.
*
*
* El siguiente fragmento de esquema especifica el contenido que se espera que
* haya en esta clase.
*
*
* <complexType name="FECAEDetResponse">
* <complexContent>
* <extension base="{http://ar.gov.afip.dif.FEV1/}FEDetResponse">
* <sequence>
* <element name="CAE" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="CAEFchVto" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FECAEDetResponse", propOrder = {"cae", "caeFchVto"})
public class FECAEDetResponse extends FEDetResponse {
@XmlElement(name = "CAE")
@Element(name = "CAE")
protected String cae;
@XmlElement(name = "CAEFchVto")
@Element(name = "CAEFchVto")
protected String caeFchVto;
/**
* Obtiene el valor de la propiedad cae.
*
* @return possible object is {@link String }
*/
public String getCAE() {
return cae;
}
/**
* Define el valor de la propiedad cae.
*
* @param value allowed object is {@link String }
*/
public void setCAE(String value) {
this.cae = value;
}
/**
* Obtiene el valor de la propiedad caeFchVto.
*
* @return possible object is {@link String }
*/
public String getCAEFchVto() {
return caeFchVto;
}
/**
* Define el valor de la propiedad caeFchVto.
*
* @param value allowed object is {@link String }
*/
public void setCAEFchVto(String value) {
this.caeFchVto = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy