BestandenlijstOpvragenResponse.java
package nl.kadaster.schemas.gds2.service.afgifte_bestandenlijstopvragen.v20170401;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import nl.kadaster.schemas.gds2.afgifte_bestandenlijstopvragenresultaat.v20170401.BestandenlijstOpvragenResultaatType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="antwoord" type="{http://www.kadaster.nl/schemas/gds2/afgifte-bestandenlijstopvragenresultaat/v20170401}BestandenlijstOpvragenResultaatType"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"antwoord"
})
@XmlRootElement(name = "BestandenlijstOpvragenResponse")
public class BestandenlijstOpvragenResponse {
@XmlElement(required = true)
protected BestandenlijstOpvragenResultaatType antwoord;
/**
* Gets the value of the antwoord property.
*
* @return
* possible object is
* {@link BestandenlijstOpvragenResultaatType }
*
*/
public BestandenlijstOpvragenResultaatType getAntwoord() {
return antwoord;
}
/**
* Sets the value of the antwoord property.
*
* @param value
* allowed object is
* {@link BestandenlijstOpvragenResultaatType }
*
*/
public void setAntwoord(BestandenlijstOpvragenResultaatType value) {
this.antwoord = value;
}
}