service.sunat.gob.pe.guiaremision.SendBillResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sunat-web-services Show documentation
Show all versions of sunat-web-services Show documentation
Sunat Web Services Endpoints
package service.sunat.gob.pe.guiaremision;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for sendBillResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="sendBillResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="applicationResponse" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "sendBillResponse", propOrder = {
"applicationResponse"
})
public class SendBillResponse {
protected byte[] applicationResponse;
/**
* Gets the value of the applicationResponse property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getApplicationResponse() {
return applicationResponse;
}
/**
* Sets the value of the applicationResponse property.
*
* @param value
* allowed object is
* byte[]
*/
public void setApplicationResponse(byte[] value) {
this.applicationResponse = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy