package org.kapott.hbci.sepa.jaxb.pain_001_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 PaymentIdentification1 complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PaymentIdentification1"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="InstrId" type="{urn:swift:xsd:$pain.001.002.02}RestrictedIdentification1" minOccurs="0"/> * <element name="EndToEndId" type="{urn:swift:xsd:$pain.001.002.02}RestrictedIdentification2"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaymentIdentification1", namespace = "urn:swift:xsd:$pain.001.002.02", propOrder = { "instrId", "endToEndId" }) public class PaymentIdentification1 { @XmlElement(name = "InstrId", namespace = "urn:swift:xsd:$pain.001.002.02") protected String instrId; @XmlElement(name = "EndToEndId", namespace = "urn:swift:xsd:$pain.001.002.02", required = true) protected String endToEndId; /** * Gets the value of the instrId property. * * @return * possible object is * {@link String } * */ public String getInstrId() { return instrId; } /** * Sets the value of the instrId property. * * @param value * allowed object is * {@link String } * */ public void setInstrId(String value) { this.instrId = value; } /** * Gets the value of the endToEndId property. * * @return * possible object is * {@link String } * */ public String getEndToEndId() { return endToEndId; } /** * Sets the value of the endToEndId property. * * @param value * allowed object is * {@link String } * */ public void setEndToEndId(String value) { this.endToEndId = value; } }