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