package org.kapott.hbci.sepa.jaxb.pain_002_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 GenericIdentificationSEPA complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="GenericIdentificationSEPA"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Id" type="{urn:swift:xsd:$pain.002.002.02}RestrictedIdentification3"/> * <element name="IdTp" type="{urn:swift:xsd:$pain.002.002.02}RestrictedSEPACode"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GenericIdentificationSEPA", namespace = "urn:swift:xsd:$pain.002.002.02", propOrder = { "id", "idTp" }) public class GenericIdentificationSEPA { @XmlElement(name = "Id", namespace = "urn:swift:xsd:$pain.002.002.02", required = true) protected String id; @XmlElement(name = "IdTp", namespace = "urn:swift:xsd:$pain.002.002.02", required = true) protected RestrictedSEPACode idTp; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the idTp property. * * @return * possible object is * {@link RestrictedSEPACode } * */ public RestrictedSEPACode getIdTp() { return idTp; } /** * Sets the value of the idTp property. * * @param value * allowed object is * {@link RestrictedSEPACode } * */ public void setIdTp(RestrictedSEPACode value) { this.idTp = value; } }