package org.kapott.hbci.sepa.jaxb.pain_008_002_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 PaymentTypeInformationSCT1 complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PaymentTypeInformationSCT1"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="InstrPrty" type="{urn:iso:std:iso:20022:tech:xsd:pain.001.003.03}Priority2Code" minOccurs="0"/> * <element name="SvcLvl" type="{urn:iso:std:iso:20022:tech:xsd:pain.001.003.03}ServiceLevelSEPA"/> * <element name="CtgyPurp" type="{urn:iso:std:iso:20022:tech:xsd:pain.001.003.03}CategoryPurposeSEPA" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaymentTypeInformationSCT1", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.001.003.03", propOrder = { "instrPrty", "svcLvl", "ctgyPurp" }) public class PaymentTypeInformationSCT1 { @XmlElement(name = "InstrPrty", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.001.003.03") protected Priority2Code instrPrty; @XmlElement(name = "SvcLvl", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.001.003.03", required = true) protected ServiceLevelSEPA svcLvl; @XmlElement(name = "CtgyPurp", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.001.003.03") protected CategoryPurposeSEPA ctgyPurp; /** * Gets the value of the instrPrty property. * * @return * possible object is * {@link Priority2Code } * */ public Priority2Code getInstrPrty() { return instrPrty; } /** * Sets the value of the instrPrty property. * * @param value * allowed object is * {@link Priority2Code } * */ public void setInstrPrty(Priority2Code value) { this.instrPrty = value; } /** * Gets the value of the svcLvl property. * * @return * possible object is * {@link ServiceLevelSEPA } * */ public ServiceLevelSEPA getSvcLvl() { return svcLvl; } /** * Sets the value of the svcLvl property. * * @param value * allowed object is * {@link ServiceLevelSEPA } * */ public void setSvcLvl(ServiceLevelSEPA value) { this.svcLvl = value; } /** * Gets the value of the ctgyPurp property. * * @return * possible object is * {@link CategoryPurposeSEPA } * */ public CategoryPurposeSEPA getCtgyPurp() { return ctgyPurp; } /** * Sets the value of the ctgyPurp property. * * @param value * allowed object is * {@link CategoryPurposeSEPA } * */ public void setCtgyPurp(CategoryPurposeSEPA value) { this.ctgyPurp = value; } }