com.prowidesoftware.swift.model.mx.dic.PaymentTransactionInformation19 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 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;
/**
* Information concerning the original transactions, to which the status report message refers.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PaymentTransactionInformation19", propOrder = {
"stsId",
"orgnlInstrId",
"orgnlEndToEndId",
"orgnlTxId",
"txSts",
"stsRsnInf",
"instgAgt",
"instdAgt",
"orgnlTxRef"
})
public class PaymentTransactionInformation19 {
@XmlElement(name = "StsId", required = true)
protected String stsId;
@XmlElement(name = "OrgnlInstrId")
protected String orgnlInstrId;
@XmlElement(name = "OrgnlEndToEndId", required = true)
protected String orgnlEndToEndId;
@XmlElement(name = "OrgnlTxId", required = true)
protected String orgnlTxId;
@XmlElement(name = "TxSts")
@XmlSchemaType(name = "string")
protected TransactionIndividualStatus2Code txSts;
@XmlElement(name = "StsRsnInf")
protected StatusReasonInformation6 stsRsnInf;
@XmlElement(name = "InstgAgt")
protected FinancialInstitution2 instgAgt;
@XmlElement(name = "InstdAgt")
protected FinancialInstitution2 instdAgt;
@XmlElement(name = "OrgnlTxRef", required = true)
protected OriginalTransactionReference11 orgnlTxRef;
/**
* Gets the value of the stsId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStsId() {
return stsId;
}
/**
* Sets the value of the stsId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentTransactionInformation19 setStsId(String value) {
this.stsId = 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 PaymentTransactionInformation19 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 PaymentTransactionInformation19 setOrgnlEndToEndId(String value) {
this.orgnlEndToEndId = value;
return this;
}
/**
* Gets the value of the orgnlTxId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrgnlTxId() {
return orgnlTxId;
}
/**
* Sets the value of the orgnlTxId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentTransactionInformation19 setOrgnlTxId(String value) {
this.orgnlTxId = value;
return this;
}
/**
* Gets the value of the txSts property.
*
* @return
* possible object is
* {@link TransactionIndividualStatus2Code }
*
*/
public TransactionIndividualStatus2Code getTxSts() {
return txSts;
}
/**
* Sets the value of the txSts property.
*
* @param value
* allowed object is
* {@link TransactionIndividualStatus2Code }
*
*/
public PaymentTransactionInformation19 setTxSts(TransactionIndividualStatus2Code value) {
this.txSts = value;
return this;
}
/**
* Gets the value of the stsRsnInf property.
*
* @return
* possible object is
* {@link StatusReasonInformation6 }
*
*/
public StatusReasonInformation6 getStsRsnInf() {
return stsRsnInf;
}
/**
* Sets the value of the stsRsnInf property.
*
* @param value
* allowed object is
* {@link StatusReasonInformation6 }
*
*/
public PaymentTransactionInformation19 setStsRsnInf(StatusReasonInformation6 value) {
this.stsRsnInf = value;
return this;
}
/**
* Gets the value of the instgAgt property.
*
* @return
* possible object is
* {@link FinancialInstitution2 }
*
*/
public FinancialInstitution2 getInstgAgt() {
return instgAgt;
}
/**
* Sets the value of the instgAgt property.
*
* @param value
* allowed object is
* {@link FinancialInstitution2 }
*
*/
public PaymentTransactionInformation19 setInstgAgt(FinancialInstitution2 value) {
this.instgAgt = value;
return this;
}
/**
* Gets the value of the instdAgt property.
*
* @return
* possible object is
* {@link FinancialInstitution2 }
*
*/
public FinancialInstitution2 getInstdAgt() {
return instdAgt;
}
/**
* Sets the value of the instdAgt property.
*
* @param value
* allowed object is
* {@link FinancialInstitution2 }
*
*/
public PaymentTransactionInformation19 setInstdAgt(FinancialInstitution2 value) {
this.instdAgt = value;
return this;
}
/**
* Gets the value of the orgnlTxRef property.
*
* @return
* possible object is
* {@link OriginalTransactionReference11 }
*
*/
public OriginalTransactionReference11 getOrgnlTxRef() {
return orgnlTxRef;
}
/**
* Sets the value of the orgnlTxRef property.
*
* @param value
* allowed object is
* {@link OriginalTransactionReference11 }
*
*/
public PaymentTransactionInformation19 setOrgnlTxRef(OriginalTransactionReference11 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