com.prowidesoftware.swift.model.mx.dic.ReorganisationInstructionSD7 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 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 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;
/**
* Provides additional information regarding corporate action reorganisation instruction details.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReorganisationInstructionSD7", propOrder = {
"plcAndNm",
"wdrwlTxTp",
"txId",
"txSeqNb",
"cstmrRefId",
"ctctPrsn",
"usrRefNb",
"prtctSfkpgAcct"
})
public class ReorganisationInstructionSD7 {
@XmlElement(name = "PlcAndNm")
protected String plcAndNm;
@XmlElement(name = "WdrwlTxTp")
@XmlSchemaType(name = "string")
protected ReorganisationWithdrawalTransactionType2Code wdrwlTxTp;
@XmlElement(name = "TxId")
protected String txId;
@XmlElement(name = "TxSeqNb")
protected String txSeqNb;
@XmlElement(name = "CstmrRefId")
protected String cstmrRefId;
@XmlElement(name = "CtctPrsn")
protected ContactIdentification5 ctctPrsn;
@XmlElement(name = "UsrRefNb")
protected String usrRefNb;
@XmlElement(name = "PrtctSfkpgAcct")
protected String prtctSfkpgAcct;
/**
* Gets the value of the plcAndNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPlcAndNm() {
return plcAndNm;
}
/**
* Sets the value of the plcAndNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ReorganisationInstructionSD7 setPlcAndNm(String value) {
this.plcAndNm = value;
return this;
}
/**
* Gets the value of the wdrwlTxTp property.
*
* @return
* possible object is
* {@link ReorganisationWithdrawalTransactionType2Code }
*
*/
public ReorganisationWithdrawalTransactionType2Code getWdrwlTxTp() {
return wdrwlTxTp;
}
/**
* Sets the value of the wdrwlTxTp property.
*
* @param value
* allowed object is
* {@link ReorganisationWithdrawalTransactionType2Code }
*
*/
public ReorganisationInstructionSD7 setWdrwlTxTp(ReorganisationWithdrawalTransactionType2Code value) {
this.wdrwlTxTp = 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 ReorganisationInstructionSD7 setTxId(String value) {
this.txId = value;
return this;
}
/**
* Gets the value of the txSeqNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTxSeqNb() {
return txSeqNb;
}
/**
* Sets the value of the txSeqNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ReorganisationInstructionSD7 setTxSeqNb(String value) {
this.txSeqNb = value;
return this;
}
/**
* Gets the value of the cstmrRefId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCstmrRefId() {
return cstmrRefId;
}
/**
* Sets the value of the cstmrRefId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ReorganisationInstructionSD7 setCstmrRefId(String value) {
this.cstmrRefId = value;
return this;
}
/**
* Gets the value of the ctctPrsn property.
*
* @return
* possible object is
* {@link ContactIdentification5 }
*
*/
public ContactIdentification5 getCtctPrsn() {
return ctctPrsn;
}
/**
* Sets the value of the ctctPrsn property.
*
* @param value
* allowed object is
* {@link ContactIdentification5 }
*
*/
public ReorganisationInstructionSD7 setCtctPrsn(ContactIdentification5 value) {
this.ctctPrsn = value;
return this;
}
/**
* Gets the value of the usrRefNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUsrRefNb() {
return usrRefNb;
}
/**
* Sets the value of the usrRefNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ReorganisationInstructionSD7 setUsrRefNb(String value) {
this.usrRefNb = value;
return this;
}
/**
* Gets the value of the prtctSfkpgAcct property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrtctSfkpgAcct() {
return prtctSfkpgAcct;
}
/**
* Sets the value of the prtctSfkpgAcct property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ReorganisationInstructionSD7 setPrtctSfkpgAcct(String value) {
this.prtctSfkpgAcct = 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