com.prowidesoftware.swift.model.mx.dic.PaymentDetails5 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
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import java.time.LocalDate;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
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;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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;
/**
* Instruction to pay an amount of money to an ultimate beneficiary, on behalf of an originator. This instruction may have to be forwarded several times to complete the settlement chain.
* .
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PaymentDetails5", propOrder = {
"txRef",
"trfValDt",
"instrSts",
"instdAmt",
"intrBkSttlmAmt",
"purp",
"pmtMtd",
"prty",
"prcgVldtyTm",
"instrCpy",
"pmtTp",
"pmtInstrRef",
"intrBkValDt",
"rltdRef",
"pmtTxPty"
})
public class PaymentDetails5 {
@XmlElement(name = "TxRef")
protected String txRef;
@XmlElement(name = "TrfValDt")
protected DateAndDateTimeChoice trfValDt;
@XmlElement(name = "InstrSts")
protected PaymentStatusDetails1 instrSts;
@XmlElement(name = "InstdAmt")
protected AmountChoice instdAmt;
@XmlElement(name = "IntrBkSttlmAmt")
protected AmountChoice intrBkSttlmAmt;
@XmlElement(name = "Purp")
protected String purp;
@XmlElement(name = "PmtMtd")
protected PaymentOrigin1Choice pmtMtd;
@XmlElement(name = "Prty")
protected PriorityCodeChoice prty;
@XmlElement(name = "PrcgVldtyTm")
protected DateTimePeriodChoice prcgVldtyTm;
@XmlElement(name = "InstrCpy")
protected String instrCpy;
@XmlElement(name = "PmtTp")
protected PaymentType2Choice pmtTp;
@XmlElement(name = "PmtInstrRef")
protected String pmtInstrRef;
@XmlElement(name = "IntrBkValDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate intrBkValDt;
@XmlElement(name = "RltdRef")
protected String rltdRef;
@XmlElement(name = "PmtTxPty")
protected PaymentTransactionParty pmtTxPty;
/**
* Gets the value of the txRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTxRef() {
return txRef;
}
/**
* Sets the value of the txRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentDetails5 setTxRef(String value) {
this.txRef = value;
return this;
}
/**
* Gets the value of the trfValDt property.
*
* @return
* possible object is
* {@link DateAndDateTimeChoice }
*
*/
public DateAndDateTimeChoice getTrfValDt() {
return trfValDt;
}
/**
* Sets the value of the trfValDt property.
*
* @param value
* allowed object is
* {@link DateAndDateTimeChoice }
*
*/
public PaymentDetails5 setTrfValDt(DateAndDateTimeChoice value) {
this.trfValDt = value;
return this;
}
/**
* Gets the value of the instrSts property.
*
* @return
* possible object is
* {@link PaymentStatusDetails1 }
*
*/
public PaymentStatusDetails1 getInstrSts() {
return instrSts;
}
/**
* Sets the value of the instrSts property.
*
* @param value
* allowed object is
* {@link PaymentStatusDetails1 }
*
*/
public PaymentDetails5 setInstrSts(PaymentStatusDetails1 value) {
this.instrSts = value;
return this;
}
/**
* Gets the value of the instdAmt property.
*
* @return
* possible object is
* {@link AmountChoice }
*
*/
public AmountChoice getInstdAmt() {
return instdAmt;
}
/**
* Sets the value of the instdAmt property.
*
* @param value
* allowed object is
* {@link AmountChoice }
*
*/
public PaymentDetails5 setInstdAmt(AmountChoice value) {
this.instdAmt = value;
return this;
}
/**
* Gets the value of the intrBkSttlmAmt property.
*
* @return
* possible object is
* {@link AmountChoice }
*
*/
public AmountChoice getIntrBkSttlmAmt() {
return intrBkSttlmAmt;
}
/**
* Sets the value of the intrBkSttlmAmt property.
*
* @param value
* allowed object is
* {@link AmountChoice }
*
*/
public PaymentDetails5 setIntrBkSttlmAmt(AmountChoice value) {
this.intrBkSttlmAmt = value;
return this;
}
/**
* Gets the value of the purp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPurp() {
return purp;
}
/**
* Sets the value of the purp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentDetails5 setPurp(String value) {
this.purp = value;
return this;
}
/**
* Gets the value of the pmtMtd property.
*
* @return
* possible object is
* {@link PaymentOrigin1Choice }
*
*/
public PaymentOrigin1Choice getPmtMtd() {
return pmtMtd;
}
/**
* Sets the value of the pmtMtd property.
*
* @param value
* allowed object is
* {@link PaymentOrigin1Choice }
*
*/
public PaymentDetails5 setPmtMtd(PaymentOrigin1Choice value) {
this.pmtMtd = value;
return this;
}
/**
* Gets the value of the prty property.
*
* @return
* possible object is
* {@link PriorityCodeChoice }
*
*/
public PriorityCodeChoice getPrty() {
return prty;
}
/**
* Sets the value of the prty property.
*
* @param value
* allowed object is
* {@link PriorityCodeChoice }
*
*/
public PaymentDetails5 setPrty(PriorityCodeChoice value) {
this.prty = value;
return this;
}
/**
* Gets the value of the prcgVldtyTm property.
*
* @return
* possible object is
* {@link DateTimePeriodChoice }
*
*/
public DateTimePeriodChoice getPrcgVldtyTm() {
return prcgVldtyTm;
}
/**
* Sets the value of the prcgVldtyTm property.
*
* @param value
* allowed object is
* {@link DateTimePeriodChoice }
*
*/
public PaymentDetails5 setPrcgVldtyTm(DateTimePeriodChoice value) {
this.prcgVldtyTm = value;
return this;
}
/**
* Gets the value of the instrCpy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstrCpy() {
return instrCpy;
}
/**
* Sets the value of the instrCpy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentDetails5 setInstrCpy(String value) {
this.instrCpy = value;
return this;
}
/**
* Gets the value of the pmtTp property.
*
* @return
* possible object is
* {@link PaymentType2Choice }
*
*/
public PaymentType2Choice getPmtTp() {
return pmtTp;
}
/**
* Sets the value of the pmtTp property.
*
* @param value
* allowed object is
* {@link PaymentType2Choice }
*
*/
public PaymentDetails5 setPmtTp(PaymentType2Choice value) {
this.pmtTp = value;
return this;
}
/**
* Gets the value of the pmtInstrRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPmtInstrRef() {
return pmtInstrRef;
}
/**
* Sets the value of the pmtInstrRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentDetails5 setPmtInstrRef(String value) {
this.pmtInstrRef = value;
return this;
}
/**
* Gets the value of the intrBkValDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getIntrBkValDt() {
return intrBkValDt;
}
/**
* Sets the value of the intrBkValDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentDetails5 setIntrBkValDt(LocalDate value) {
this.intrBkValDt = value;
return this;
}
/**
* Gets the value of the rltdRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRltdRef() {
return rltdRef;
}
/**
* Sets the value of the rltdRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentDetails5 setRltdRef(String value) {
this.rltdRef = value;
return this;
}
/**
* Gets the value of the pmtTxPty property.
*
* @return
* possible object is
* {@link PaymentTransactionParty }
*
*/
public PaymentTransactionParty getPmtTxPty() {
return pmtTxPty;
}
/**
* Sets the value of the pmtTxPty property.
*
* @param value
* allowed object is
* {@link PaymentTransactionParty }
*
*/
public PaymentDetails5 setPmtTxPty(PaymentTransactionParty value) {
this.pmtTxPty = 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