
ar.com.system.afip.wsfe.service.api.FECompTotXRequest Maven / Gradle / Ivy
package ar.com.system.afip.wsfe.service.api;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;
import org.simpleframework.xml.Root;
import javax.annotation.Nonnull;
import javax.xml.bind.annotation.*;
import static com.google.common.base.Preconditions.checkNotNull;
/**
*
* Clase Java para anonymous complex type.
*
*
* El siguiente fragmento de esquema especifica el contenido que se espera que
* haya en esta clase.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Auth" type="{http://ar.gov.afip.dif.FEV1/}FEAuthRequest" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {"auth"})
@XmlRootElement(name = "FECompTotXRequest")
@Root(name = "FECompTotXRequest")
@Namespace(reference = ServiceSoap.SERVICE_NAMESPACE)
public class FECompTotXRequest {
@XmlElement(name = "Auth")
@Element(name = "Auth")
protected FEAuthRequest auth;
public FECompTotXRequest() {
}
public FECompTotXRequest(@Nonnull FEAuthRequest auth) {
this.auth = checkNotNull(auth);
}
/**
* Obtiene el valor de la propiedad auth.
*
* @return possible object is {@link FEAuthRequest }
*/
public FEAuthRequest getAuth() {
return auth;
}
/**
* Define el valor de la propiedad auth.
*
* @param value allowed object is {@link FEAuthRequest }
*/
public void setAuth(FEAuthRequest value) {
this.auth = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy