
com.prowidesoftware.swift.model.mx.dic.UnderlyingPaymentInstruction4 Maven / Gradle / Ivy
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;
/**
* Reference information concerning the original payment initiation, to which the investigation message refers.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UnderlyingPaymentInstruction4", propOrder = {
"orgnlGrpInf",
"orgnlPmtInfId",
"orgnlInstrId",
"orgnlEndToEndId",
"orgnlInstdAmt",
"reqdExctnDt",
"reqdColltnDt",
"orgnlTxRef"
})
public class UnderlyingPaymentInstruction4 {
@XmlElement(name = "OrgnlGrpInf")
protected UnderlyingGroupInformation1 orgnlGrpInf;
@XmlElement(name = "OrgnlPmtInfId")
protected String orgnlPmtInfId;
@XmlElement(name = "OrgnlInstrId")
protected String orgnlInstrId;
@XmlElement(name = "OrgnlEndToEndId")
protected String orgnlEndToEndId;
@XmlElement(name = "OrgnlInstdAmt", required = true)
protected ActiveOrHistoricCurrencyAndAmount orgnlInstdAmt;
@XmlElement(name = "ReqdExctnDt")
protected DateAndDateTime2Choice reqdExctnDt;
@XmlElement(name = "ReqdColltnDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar reqdColltnDt;
@XmlElement(name = "OrgnlTxRef")
protected OriginalTransactionReference27 orgnlTxRef;
/**
* Gets the value of the orgnlGrpInf property.
*
* @return
* possible object is
* {@link UnderlyingGroupInformation1 }
*
*/
public UnderlyingGroupInformation1 getOrgnlGrpInf() {
return orgnlGrpInf;
}
/**
* Sets the value of the orgnlGrpInf property.
*
* @param value
* allowed object is
* {@link UnderlyingGroupInformation1 }
*
*/
public UnderlyingPaymentInstruction4 setOrgnlGrpInf(UnderlyingGroupInformation1 value) {
this.orgnlGrpInf = value;
return this;
}
/**
* Gets the value of the orgnlPmtInfId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrgnlPmtInfId() {
return orgnlPmtInfId;
}
/**
* Sets the value of the orgnlPmtInfId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public UnderlyingPaymentInstruction4 setOrgnlPmtInfId(String value) {
this.orgnlPmtInfId = value;
return this;
}
/**
* Gets the value of the orgnlInstrId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrgnlInstrId() {
return orgnlInstrId;
}
/**
* Sets the value of the orgnlInstrId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public UnderlyingPaymentInstruction4 setOrgnlInstrId(String value) {
this.orgnlInstrId = 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 UnderlyingPaymentInstruction4 setOrgnlEndToEndId(String value) {
this.orgnlEndToEndId = value;
return this;
}
/**
* Gets the value of the orgnlInstdAmt property.
*
* @return
* possible object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public ActiveOrHistoricCurrencyAndAmount getOrgnlInstdAmt() {
return orgnlInstdAmt;
}
/**
* Sets the value of the orgnlInstdAmt property.
*
* @param value
* allowed object is
* {@link ActiveOrHistoricCurrencyAndAmount }
*
*/
public UnderlyingPaymentInstruction4 setOrgnlInstdAmt(ActiveOrHistoricCurrencyAndAmount value) {
this.orgnlInstdAmt = value;
return this;
}
/**
* Gets the value of the reqdExctnDt property.
*
* @return
* possible object is
* {@link DateAndDateTime2Choice }
*
*/
public DateAndDateTime2Choice getReqdExctnDt() {
return reqdExctnDt;
}
/**
* Sets the value of the reqdExctnDt property.
*
* @param value
* allowed object is
* {@link DateAndDateTime2Choice }
*
*/
public UnderlyingPaymentInstruction4 setReqdExctnDt(DateAndDateTime2Choice value) {
this.reqdExctnDt = value;
return this;
}
/**
* Gets the value of the reqdColltnDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getReqdColltnDt() {
return reqdColltnDt;
}
/**
* Sets the value of the reqdColltnDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public UnderlyingPaymentInstruction4 setReqdColltnDt(XMLGregorianCalendar value) {
this.reqdColltnDt = value;
return this;
}
/**
* Gets the value of the orgnlTxRef property.
*
* @return
* possible object is
* {@link OriginalTransactionReference27 }
*
*/
public OriginalTransactionReference27 getOrgnlTxRef() {
return orgnlTxRef;
}
/**
* Sets the value of the orgnlTxRef property.
*
* @param value
* allowed object is
* {@link OriginalTransactionReference27 }
*
*/
public UnderlyingPaymentInstruction4 setOrgnlTxRef(OriginalTransactionReference27 value) {
this.orgnlTxRef = 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