
org.iso20022.pacs008_001.v10.MandateClassification1Choice Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.1
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.09.21 at 06:05:04 PM IST
//
package org.iso20022.pacs008_001.v10;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Specifies the high level purpose of the instruction based on a set of pre-defined categories.
* Usage: This is used by the initiating party to provide information concerning the processing of the payment. It is likely to trigger special processing by any of the agents involved in the payment chain.
*
* Java class for MandateClassification1Choice complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MandateClassification1Choice">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="Cd" type="{urn:iso:std:iso:20022:tech:xsd:pacs.008.001.10}MandateClassification1Code"/>
* <element name="Prtry" type="{urn:iso:std:iso:20022:tech:xsd:pacs.008.001.10}Max35Text"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MandateClassification1Choice", propOrder = {
"cd",
"prtry"
})
public class MandateClassification1Choice {
@XmlElement(name = "Cd")
@XmlSchemaType(name = "string")
protected MandateClassification1Code cd;
@XmlElement(name = "Prtry")
protected String prtry;
/**
* Gets the value of the cd property.
*
* @return
* possible object is
* {@link MandateClassification1Code }
*
*/
public MandateClassification1Code getCd() {
return cd;
}
/**
* Sets the value of the cd property.
*
* @param value
* allowed object is
* {@link MandateClassification1Code }
*
*/
public void setCd(MandateClassification1Code value) {
this.cd = value;
}
/**
* Gets the value of the prtry property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrtry() {
return prtry;
}
/**
* Sets the value of the prtry property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPrtry(String value) {
this.prtry = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy