com.prowidesoftware.swift.model.mx.dic.OriginalItem6 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Identifies the original notification item, to which the cancellation advice refers.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OriginalItem6", propOrder = {
"orgnlItmId",
"orgnlEndToEndId",
"uetr",
"amt",
"xpctdValDt",
"orgnlItmRef"
})
public class OriginalItem6 {
@XmlElement(name = "OrgnlItmId", required = true)
protected String orgnlItmId;
@XmlElement(name = "OrgnlEndToEndId")
protected String orgnlEndToEndId;
@XmlElement(name = "UETR")
protected String uetr;
@XmlElement(name = "Amt", required = true)
protected ActiveOrHistoricCurrencyAndAmount amt;
@XmlElement(name = "XpctdValDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar xpctdValDt;
@XmlElement(name = "OrgnlItmRef")
protected OriginalItemReference5 orgnlItmRef;
/**
* Gets the value of the orgnlItmId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrgnlItmId() {
return orgnlItmId;
}
/**
* Sets the value of the orgnlItmId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public OriginalItem6 setOrgnlItmId(String value) {
this.orgnlItmId = value;
return this;
}
/**
* Gets the value of the orgnlEndToEndId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrgnlEndToEndId() {
return orgnlEndToEndId;
}
/**
* Sets the value of the orgnlEndToEndId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public OriginalItem6 setOrgnlEndToEndId(String value) {
this.orgnlEndToEndId = value;
return this;
}
/**
* Gets the value of the uetr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUETR() {
return uetr;
}
/**
* Sets the value of the uetr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public OriginalItem6 setUETR(String value) {
this.uetr = value;
return this;
}
/**
* Gets the value of the amt property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getAmt() {
return amt;
}
/**
* Sets the value of the amt property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public OriginalItem6 setAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.amt = value;
return this;
}
/**
* Gets the value of the xpctdValDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getXpctdValDt() {
return xpctdValDt;
}
/**
* Sets the value of the xpctdValDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public OriginalItem6 setXpctdValDt(XMLGregorianCalendar value) {
this.xpctdValDt = value;
return this;
}
/**
* Gets the value of the orgnlItmRef property.
*
* @return
* possible object is
* {@link OriginalItemReference5 }
*
*/
public OriginalItemReference5 getOrgnlItmRef() {
return orgnlItmRef;
}
/**
* Sets the value of the orgnlItmRef property.
*
* @param value
* allowed object is
* {@link OriginalItemReference5 }
*
*/
public OriginalItem6 setOrgnlItmRef(OriginalItemReference5 value) {
this.orgnlItmRef = value;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy