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

service.sunat.gob.pe.billconsultservice.StatusResponse Maven / Gradle / Ivy

There is a newer version: 1.3.4.Final
Show newest version

package service.sunat.gob.pe.billconsultservice;

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


/**
 * 

Java class for statusResponse complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="statusResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="content" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
 *         <element name="statusCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="statusMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "statusResponse", propOrder = { "content", "statusCode", "statusMessage" }) public class StatusResponse { protected byte[] content; protected String statusCode; protected String statusMessage; /** * Gets the value of the content property. * * @return * possible object is * byte[] */ public byte[] getContent() { return content; } /** * Sets the value of the content property. * * @param value * allowed object is * byte[] */ public void setContent(byte[] value) { this.content = value; } /** * Gets the value of the statusCode property. * * @return * possible object is * {@link String } * */ public String getStatusCode() { return statusCode; } /** * Sets the value of the statusCode property. * * @param value * allowed object is * {@link String } * */ public void setStatusCode(String value) { this.statusCode = value; } /** * Gets the value of the statusMessage property. * * @return * possible object is * {@link String } * */ public String getStatusMessage() { return statusMessage; } /** * Sets the value of the statusMessage property. * * @param value * allowed object is * {@link String } * */ public void setStatusMessage(String value) { this.statusMessage = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy