package org.kapott.hbci.sepa.jaxb.pain_008_001_01; 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 PaymentTypeInformation8 complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PaymentTypeInformation8"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="SvcLvl" type="{urn:sepade:xsd:pain.008.001.01}ServiceLevel4"/> * <element name="SeqTp" type="{urn:sepade:xsd:pain.008.001.01}SequenceType1Code"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaymentTypeInformation8", namespace = "urn:sepade:xsd:pain.008.001.01", propOrder = { "svcLvl", "seqTp" }) public class PaymentTypeInformation8 { @XmlElement(name = "SvcLvl", namespace = "urn:sepade:xsd:pain.008.001.01", required = true) protected ServiceLevel4 svcLvl; @XmlElement(name = "SeqTp", namespace = "urn:sepade:xsd:pain.008.001.01", required = true) protected SequenceType1Code seqTp; /** * 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; } /** * Gets the value of the seqTp property. * * @return * possible object is * {@link SequenceType1Code } * */ public SequenceType1Code getSeqTp() { return seqTp; } /** * Sets the value of the seqTp property. * * @param value * allowed object is * {@link SequenceType1Code } * */ public void setSeqTp(SequenceType1Code value) { this.seqTp = value; } }