com.prowidesoftware.swift.model.mx.dic.TransactionReferences8 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
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 underlying transaction.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TransactionReferences8", propOrder = {
"pmtInfId",
"instrId",
"endToEndId",
"txId",
"uetr",
"mndtId",
"cdtrSchmeId"
})
public class TransactionReferences8 {
@XmlElement(name = "PmtInfId")
protected String pmtInfId;
@XmlElement(name = "InstrId")
protected String instrId;
@XmlElement(name = "EndToEndId", required = true)
protected String endToEndId;
@XmlElement(name = "TxId")
protected String txId;
@XmlElement(name = "UETR")
protected String uetr;
@XmlElement(name = "MndtId")
protected String mndtId;
@XmlElement(name = "CdtrSchmeId")
protected PartyIdentification272 cdtrSchmeId;
/**
* Gets the value of the pmtInfId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPmtInfId() {
return pmtInfId;
}
/**
* Sets the value of the pmtInfId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TransactionReferences8 setPmtInfId(String value) {
this.pmtInfId = value;
return this;
}
/**
* Gets the value of the instrId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstrId() {
return instrId;
}
/**
* Sets the value of the instrId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TransactionReferences8 setInstrId(String value) {
this.instrId = value;
return this;
}
/**
* Gets the value of the endToEndId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEndToEndId() {
return endToEndId;
}
/**
* Sets the value of the endToEndId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TransactionReferences8 setEndToEndId(String value) {
this.endToEndId = value;
return this;
}
/**
* Gets the value of the txId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTxId() {
return txId;
}
/**
* Sets the value of the txId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TransactionReferences8 setTxId(String value) {
this.txId = 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 TransactionReferences8 setUETR(String value) {
this.uetr = value;
return this;
}
/**
* Gets the value of the mndtId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMndtId() {
return mndtId;
}
/**
* Sets the value of the mndtId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TransactionReferences8 setMndtId(String value) {
this.mndtId = value;
return this;
}
/**
* Gets the value of the cdtrSchmeId property.
*
* @return
* possible object is
* {@link PartyIdentification272 }
*
*/
public PartyIdentification272 getCdtrSchmeId() {
return cdtrSchmeId;
}
/**
* Sets the value of the cdtrSchmeId property.
*
* @param value
* allowed object is
* {@link PartyIdentification272 }
*
*/
public TransactionReferences8 setCdtrSchmeId(PartyIdentification272 value) {
this.cdtrSchmeId = 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