
com.prowidesoftware.swift.model.mx.dic.SecuritiesReferenceDeltaStatusReport3Choice 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;
/**
* Choice defining financial instruments that are either new or have been modified.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SecuritiesReferenceDeltaStatusReport3Choice", propOrder = {
"modfdRcrd",
"newRcrd",
"termntdRcrd"
})
public class SecuritiesReferenceDeltaStatusReport3Choice {
@XmlElement(name = "ModfdRcrd")
protected SecuritiesReferenceDataReport6 modfdRcrd;
@XmlElement(name = "NewRcrd")
protected SecuritiesReferenceDataReport6 newRcrd;
@XmlElement(name = "TermntdRcrd")
protected SecuritiesReferenceDataReport6 termntdRcrd;
/**
* Gets the value of the modfdRcrd property.
*
* @return
* possible object is
* {@link SecuritiesReferenceDataReport6 }
*
*/
public SecuritiesReferenceDataReport6 getModfdRcrd() {
return modfdRcrd;
}
/**
* Sets the value of the modfdRcrd property.
*
* @param value
* allowed object is
* {@link SecuritiesReferenceDataReport6 }
*
*/
public SecuritiesReferenceDeltaStatusReport3Choice setModfdRcrd(SecuritiesReferenceDataReport6 value) {
this.modfdRcrd = value;
return this;
}
/**
* Gets the value of the newRcrd property.
*
* @return
* possible object is
* {@link SecuritiesReferenceDataReport6 }
*
*/
public SecuritiesReferenceDataReport6 getNewRcrd() {
return newRcrd;
}
/**
* Sets the value of the newRcrd property.
*
* @param value
* allowed object is
* {@link SecuritiesReferenceDataReport6 }
*
*/
public SecuritiesReferenceDeltaStatusReport3Choice setNewRcrd(SecuritiesReferenceDataReport6 value) {
this.newRcrd = value;
return this;
}
/**
* Gets the value of the termntdRcrd property.
*
* @return
* possible object is
* {@link SecuritiesReferenceDataReport6 }
*
*/
public SecuritiesReferenceDataReport6 getTermntdRcrd() {
return termntdRcrd;
}
/**
* Sets the value of the termntdRcrd property.
*
* @param value
* allowed object is
* {@link SecuritiesReferenceDataReport6 }
*
*/
public SecuritiesReferenceDeltaStatusReport3Choice setTermntdRcrd(SecuritiesReferenceDataReport6 value) {
this.termntdRcrd = 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