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

service.sunat.gob.pe.billconsultservice.GetStatusResponse 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 getStatusResponse complex type. * *

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

 * <complexType name="getStatusResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="status" type="{http://service.sunat.gob.pe}statusResponse" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "getStatusResponse", propOrder = { "status" }) public class GetStatusResponse { protected StatusResponse status; /** * Gets the value of the status property. * * @return * possible object is * {@link StatusResponse } * */ public StatusResponse getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link StatusResponse } * */ public void setStatus(StatusResponse value) { this.status = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy