com.prowidesoftware.swift.model.mx.dic.LoanData40 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;
/**
* Specifies the loan data details used for financing the transaction.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LoanData40", propOrder = {
"unqTradIdr",
"evtDt",
"ctrctTp",
"clrSts",
"tradgVn",
"mstrAgrmt",
"exctnDtTm",
"valDt",
"termntnDt",
"gnlColl",
"unitPric",
"txSpcfcData"
})
public class LoanData40 {
@XmlElement(name = "UnqTradIdr", required = true)
protected String unqTradIdr;
@XmlElement(name = "EvtDt", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar evtDt;
@XmlElement(name = "CtrctTp", required = true)
@XmlSchemaType(name = "string")
protected ExposureType6Code ctrctTp;
@XmlElement(name = "ClrSts", required = true)
protected Cleared8Choice clrSts;
@XmlElement(name = "TradgVn", required = true)
protected String tradgVn;
@XmlElement(name = "MstrAgrmt")
protected MasterAgreement1 mstrAgrmt;
@XmlElement(name = "ExctnDtTm", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar exctnDtTm;
@XmlElement(name = "ValDt", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar valDt;
@XmlElement(name = "TermntnDt", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar termntnDt;
@XmlElement(name = "GnlColl")
@XmlSchemaType(name = "string")
protected SpecialCollateral1Code gnlColl;
@XmlElement(name = "UnitPric")
protected SecuritiesTransactionPrice2Choice unitPric;
@XmlElement(name = "TxSpcfcData", required = true)
protected TransactionLoanData6Choice txSpcfcData;
/**
* Gets the value of the unqTradIdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUnqTradIdr() {
return unqTradIdr;
}
/**
* Sets the value of the unqTradIdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public LoanData40 setUnqTradIdr(String value) {
this.unqTradIdr = value;
return this;
}
/**
* Gets the value of the evtDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getEvtDt() {
return evtDt;
}
/**
* Sets the value of the evtDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public LoanData40 setEvtDt(XMLGregorianCalendar value) {
this.evtDt = value;
return this;
}
/**
* Gets the value of the ctrctTp property.
*
* @return
* possible object is
* {@link ExposureType6Code }
*
*/
public ExposureType6Code getCtrctTp() {
return ctrctTp;
}
/**
* Sets the value of the ctrctTp property.
*
* @param value
* allowed object is
* {@link ExposureType6Code }
*
*/
public LoanData40 setCtrctTp(ExposureType6Code value) {
this.ctrctTp = value;
return this;
}
/**
* Gets the value of the clrSts property.
*
* @return
* possible object is
* {@link Cleared8Choice }
*
*/
public Cleared8Choice getClrSts() {
return clrSts;
}
/**
* Sets the value of the clrSts property.
*
* @param value
* allowed object is
* {@link Cleared8Choice }
*
*/
public LoanData40 setClrSts(Cleared8Choice value) {
this.clrSts = value;
return this;
}
/**
* Gets the value of the tradgVn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTradgVn() {
return tradgVn;
}
/**
* Sets the value of the tradgVn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public LoanData40 setTradgVn(String value) {
this.tradgVn = value;
return this;
}
/**
* Gets the value of the mstrAgrmt property.
*
* @return
* possible object is
* {@link MasterAgreement1 }
*
*/
public MasterAgreement1 getMstrAgrmt() {
return mstrAgrmt;
}
/**
* Sets the value of the mstrAgrmt property.
*
* @param value
* allowed object is
* {@link MasterAgreement1 }
*
*/
public LoanData40 setMstrAgrmt(MasterAgreement1 value) {
this.mstrAgrmt = value;
return this;
}
/**
* Gets the value of the exctnDtTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getExctnDtTm() {
return exctnDtTm;
}
/**
* Sets the value of the exctnDtTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public LoanData40 setExctnDtTm(XMLGregorianCalendar value) {
this.exctnDtTm = value;
return this;
}
/**
* Gets the value of the valDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getValDt() {
return valDt;
}
/**
* Sets the value of the valDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public LoanData40 setValDt(XMLGregorianCalendar value) {
this.valDt = value;
return this;
}
/**
* Gets the value of the termntnDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTermntnDt() {
return termntnDt;
}
/**
* Sets the value of the termntnDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public LoanData40 setTermntnDt(XMLGregorianCalendar value) {
this.termntnDt = value;
return this;
}
/**
* Gets the value of the gnlColl property.
*
* @return
* possible object is
* {@link SpecialCollateral1Code }
*
*/
public SpecialCollateral1Code getGnlColl() {
return gnlColl;
}
/**
* Sets the value of the gnlColl property.
*
* @param value
* allowed object is
* {@link SpecialCollateral1Code }
*
*/
public LoanData40 setGnlColl(SpecialCollateral1Code value) {
this.gnlColl = value;
return this;
}
/**
* Gets the value of the unitPric property.
*
* @return
* possible object is
* {@link SecuritiesTransactionPrice2Choice }
*
*/
public SecuritiesTransactionPrice2Choice getUnitPric() {
return unitPric;
}
/**
* Sets the value of the unitPric property.
*
* @param value
* allowed object is
* {@link SecuritiesTransactionPrice2Choice }
*
*/
public LoanData40 setUnitPric(SecuritiesTransactionPrice2Choice value) {
this.unitPric = value;
return this;
}
/**
* Gets the value of the txSpcfcData property.
*
* @return
* possible object is
* {@link TransactionLoanData6Choice }
*
*/
public TransactionLoanData6Choice getTxSpcfcData() {
return txSpcfcData;
}
/**
* Sets the value of the txSpcfcData property.
*
* @param value
* allowed object is
* {@link TransactionLoanData6Choice }
*
*/
public LoanData40 setTxSpcfcData(TransactionLoanData6Choice value) {
this.txSpcfcData = 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