package org.kapott.hbci.sepa.jaxb.pain_001_001_02; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for PaymentTypeInformation7 complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PaymentTypeInformation7"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="SvcLvl" type="{urn:sepade:xsd:pain.001.001.02}ServiceLevel4"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaymentTypeInformation7", namespace = "urn:sepade:xsd:pain.001.001.02", propOrder = { "svcLvl" }) public class PaymentTypeInformation7 { @XmlElement(name = "SvcLvl", namespace = "urn:sepade:xsd:pain.001.001.02", required = true) protected ServiceLevel4 svcLvl; /** * Gets the value of the svcLvl property. * * @return * possible object is * {@link ServiceLevel4 } * */ public ServiceLevel4 getSvcLvl() { return svcLvl; } /** * Sets the value of the svcLvl property. * * @param value * allowed object is * {@link ServiceLevel4 } * */ public void setSvcLvl(ServiceLevel4 value) { this.svcLvl = value; } }