package at.gv.util.xsd.szr_v4;

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;


/**
 * <p>Java-Klasse für anonymous complex type.
 * 
 * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
 * 
 * <pre>
 * &lt;complexType&gt;
 *   &lt;complexContent&gt;
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
 *       &lt;sequence&gt;
 *         &lt;element name="GetBPKZPVRequest" type="{urn:SZRServices}GetBPKZPVRequestType"/&gt;
 *       &lt;/sequence&gt;
 *     &lt;/restriction&gt;
 *   &lt;/complexContent&gt;
 * &lt;/complexType&gt;
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "getBPKZPVRequest"
})
@XmlRootElement(name = "GetBPKZPV")
public class GetBPKZPV {

    @XmlElement(name = "GetBPKZPVRequest", required = true)
    protected GetBPKZPVRequestType getBPKZPVRequest;

    /**
     * Ruft den Wert der getBPKZPVRequest-Eigenschaft ab.
     * 
     * @return
     *     possible object is
     *     {@link GetBPKZPVRequestType }
     *     
     */
    public GetBPKZPVRequestType getGetBPKZPVRequest() {
        return getBPKZPVRequest;
    }

    /**
     * Legt den Wert der getBPKZPVRequest-Eigenschaft fest.
     * 
     * @param value
     *     allowed object is
     *     {@link GetBPKZPVRequestType }
     *     
     */
    public void setGetBPKZPVRequest(GetBPKZPVRequestType value) {
        this.getBPKZPVRequest = value;
    }

}