com.prowidesoftware.swift.model.mx.dic.References23Choice 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 = "References23Choice", propOrder = {
"othrTxId",
"sctiesFincgTxId",
"sctiesSttlmTxId",
"intraPosMvmntId"
})
public class References23Choice {
@XmlElement(name = "OthrTxId")
protected GenericDocumentIdentification2 othrTxId;
@XmlElement(name = "SctiesFincgTxId")
protected SettlementTypeAndIdentification14 sctiesFincgTxId;
@XmlElement(name = "SctiesSttlmTxId")
protected SettlementTypeAndIdentification14 sctiesSttlmTxId;
@XmlElement(name = "IntraPosMvmntId")
protected String intraPosMvmntId;
/**
* Gets the value of the othrTxId property.
*
* @return
* possible object is
* {@link GenericDocumentIdentification2 }
*
*/
public GenericDocumentIdentification2 getOthrTxId() {
return othrTxId;
}
/**
* Sets the value of the othrTxId property.
*
* @param value
* allowed object is
* {@link GenericDocumentIdentification2 }
*
*/
public References23Choice setOthrTxId(GenericDocumentIdentification2 value) {
this.othrTxId = value;
return this;
}
/**
* Gets the value of the sctiesFincgTxId property.
*
* @return
* possible object is
* {@link SettlementTypeAndIdentification14 }
*
*/
public SettlementTypeAndIdentification14 getSctiesFincgTxId() {
return sctiesFincgTxId;
}
/**
* Sets the value of the sctiesFincgTxId property.
*
* @param value
* allowed object is
* {@link SettlementTypeAndIdentification14 }
*
*/
public References23Choice setSctiesFincgTxId(SettlementTypeAndIdentification14 value) {
this.sctiesFincgTxId = value;
return this;
}
/**
* Gets the value of the sctiesSttlmTxId property.
*
* @return
* possible object is
* {@link SettlementTypeAndIdentification14 }
*
*/
public SettlementTypeAndIdentification14 getSctiesSttlmTxId() {
return sctiesSttlmTxId;
}
/**
* Sets the value of the sctiesSttlmTxId property.
*
* @param value
* allowed object is
* {@link SettlementTypeAndIdentification14 }
*
*/
public References23Choice setSctiesSttlmTxId(SettlementTypeAndIdentification14 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 References23Choice setIntraPosMvmntId(String value) {
this.intraPosMvmntId = 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