
com.prowidesoftware.swift.model.mx.dic.AdditionalReference3 Maven / Gradle / Ivy
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.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;
/**
* References a related message or provides another reference, such as a pool reference, linking a set of messages. The party which issued the related reference may be the Sender of the referenced message or a party other than the Sender.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AdditionalReference3", propOrder = {
"ref",
"refIssr",
"msgNm"
})
public class AdditionalReference3 {
@XmlElement(name = "Ref", required = true)
protected String ref;
@XmlElement(name = "RefIssr")
protected PartyIdentification2Choice refIssr;
@XmlElement(name = "MsgNm")
protected String msgNm;
/**
* Gets the value of the ref property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRef() {
return ref;
}
/**
* Sets the value of the ref property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AdditionalReference3 setRef(String value) {
this.ref = value;
return this;
}
/**
* Gets the value of the refIssr property.
*
* @return
* possible object is
* {@link PartyIdentification2Choice }
*
*/
public PartyIdentification2Choice getRefIssr() {
return refIssr;
}
/**
* Sets the value of the refIssr property.
*
* @param value
* allowed object is
* {@link PartyIdentification2Choice }
*
*/
public AdditionalReference3 setRefIssr(PartyIdentification2Choice value) {
this.refIssr = value;
return this;
}
/**
* Gets the value of the msgNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMsgNm() {
return msgNm;
}
/**
* Sets the value of the msgNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AdditionalReference3 setMsgNm(String value) {
this.msgNm = 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