com.prowidesoftware.swift.model.mx.dic.References73Choice 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.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;
/**
* Choice of reference.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "References73Choice", propOrder = {
"sctiesSttlmTxId",
"intraPosMvmntId",
"intraBalMvmntId",
"acctSvcrTxId",
"mktInfrstrctrTxId",
"ctrPtyMktInfrstrctrTxId",
"poolId",
"othrTxId"
})
public class References73Choice {
@XmlElement(name = "SctiesSttlmTxId")
protected String sctiesSttlmTxId;
@XmlElement(name = "IntraPosMvmntId")
protected String intraPosMvmntId;
@XmlElement(name = "IntraBalMvmntId")
protected String intraBalMvmntId;
@XmlElement(name = "AcctSvcrTxId")
protected String acctSvcrTxId;
@XmlElement(name = "MktInfrstrctrTxId")
protected String mktInfrstrctrTxId;
@XmlElement(name = "CtrPtyMktInfrstrctrTxId")
protected String ctrPtyMktInfrstrctrTxId;
@XmlElement(name = "PoolId")
protected String poolId;
@XmlElement(name = "OthrTxId")
protected String othrTxId;
/**
* Gets the value of the sctiesSttlmTxId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSctiesSttlmTxId() {
return sctiesSttlmTxId;
}
/**
* Sets the value of the sctiesSttlmTxId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public References73Choice setSctiesSttlmTxId(String value) {
this.sctiesSttlmTxId = value;
return this;
}
/**
* Gets the value of the intraPosMvmntId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIntraPosMvmntId() {
return intraPosMvmntId;
}
/**
* Sets the value of the intraPosMvmntId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public References73Choice setIntraPosMvmntId(String value) {
this.intraPosMvmntId = value;
return this;
}
/**
* Gets the value of the intraBalMvmntId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIntraBalMvmntId() {
return intraBalMvmntId;
}
/**
* Sets the value of the intraBalMvmntId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public References73Choice setIntraBalMvmntId(String value) {
this.intraBalMvmntId = value;
return this;
}
/**
* Gets the value of the acctSvcrTxId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAcctSvcrTxId() {
return acctSvcrTxId;
}
/**
* Sets the value of the acctSvcrTxId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public References73Choice setAcctSvcrTxId(String value) {
this.acctSvcrTxId = value;
return this;
}
/**
* Gets the value of the mktInfrstrctrTxId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMktInfrstrctrTxId() {
return mktInfrstrctrTxId;
}
/**
* Sets the value of the mktInfrstrctrTxId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public References73Choice setMktInfrstrctrTxId(String value) {
this.mktInfrstrctrTxId = value;
return this;
}
/**
* Gets the value of the ctrPtyMktInfrstrctrTxId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCtrPtyMktInfrstrctrTxId() {
return ctrPtyMktInfrstrctrTxId;
}
/**
* Sets the value of the ctrPtyMktInfrstrctrTxId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public References73Choice setCtrPtyMktInfrstrctrTxId(String value) {
this.ctrPtyMktInfrstrctrTxId = value;
return this;
}
/**
* Gets the value of the poolId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPoolId() {
return poolId;
}
/**
* Sets the value of the poolId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public References73Choice setPoolId(String value) {
this.poolId = value;
return this;
}
/**
* Gets the value of the othrTxId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOthrTxId() {
return othrTxId;
}
/**
* Sets the value of the othrTxId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public References73Choice setOthrTxId(String value) {
this.othrTxId = 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