
com.prowidesoftware.swift.model.mx.dic.IndividualOrderConfirmationStatusAndReason2 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;
/**
* Status report of the individual orders confirmation that was previously received.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IndividualOrderConfirmationStatusAndReason2", propOrder = {
"mstrRef",
"ordrRef",
"conf",
"clntRef",
"dealRef",
"stsInitr",
"invstmtAcctDtls",
"finInstrmDtls"
})
public class IndividualOrderConfirmationStatusAndReason2 {
@XmlElement(name = "MstrRef")
protected String mstrRef;
@XmlElement(name = "OrdrRef", required = true)
protected String ordrRef;
@XmlElement(name = "Conf", required = true)
protected ConfirmationStatus1Choice conf;
@XmlElement(name = "ClntRef")
protected String clntRef;
@XmlElement(name = "DealRef")
protected String dealRef;
@XmlElement(name = "StsInitr")
protected PartyIdentification113 stsInitr;
@XmlElement(name = "InvstmtAcctDtls")
protected InvestmentAccount58 invstmtAcctDtls;
@XmlElement(name = "FinInstrmDtls")
protected FinancialInstrument57 finInstrmDtls;
/**
* Gets the value of the mstrRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMstrRef() {
return mstrRef;
}
/**
* Sets the value of the mstrRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public IndividualOrderConfirmationStatusAndReason2 setMstrRef(String value) {
this.mstrRef = value;
return this;
}
/**
* Gets the value of the ordrRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrdrRef() {
return ordrRef;
}
/**
* Sets the value of the ordrRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public IndividualOrderConfirmationStatusAndReason2 setOrdrRef(String value) {
this.ordrRef = value;
return this;
}
/**
* Gets the value of the conf property.
*
* @return
* possible object is
* {@link ConfirmationStatus1Choice }
*
*/
public ConfirmationStatus1Choice getConf() {
return conf;
}
/**
* Sets the value of the conf property.
*
* @param value
* allowed object is
* {@link ConfirmationStatus1Choice }
*
*/
public IndividualOrderConfirmationStatusAndReason2 setConf(ConfirmationStatus1Choice value) {
this.conf = value;
return this;
}
/**
* Gets the value of the clntRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClntRef() {
return clntRef;
}
/**
* Sets the value of the clntRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public IndividualOrderConfirmationStatusAndReason2 setClntRef(String value) {
this.clntRef = value;
return this;
}
/**
* Gets the value of the dealRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDealRef() {
return dealRef;
}
/**
* Sets the value of the dealRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public IndividualOrderConfirmationStatusAndReason2 setDealRef(String value) {
this.dealRef = value;
return this;
}
/**
* Gets the value of the stsInitr property.
*
* @return
* possible object is
* {@link PartyIdentification113 }
*
*/
public PartyIdentification113 getStsInitr() {
return stsInitr;
}
/**
* Sets the value of the stsInitr property.
*
* @param value
* allowed object is
* {@link PartyIdentification113 }
*
*/
public IndividualOrderConfirmationStatusAndReason2 setStsInitr(PartyIdentification113 value) {
this.stsInitr = value;
return this;
}
/**
* Gets the value of the invstmtAcctDtls property.
*
* @return
* possible object is
* {@link InvestmentAccount58 }
*
*/
public InvestmentAccount58 getInvstmtAcctDtls() {
return invstmtAcctDtls;
}
/**
* Sets the value of the invstmtAcctDtls property.
*
* @param value
* allowed object is
* {@link InvestmentAccount58 }
*
*/
public IndividualOrderConfirmationStatusAndReason2 setInvstmtAcctDtls(InvestmentAccount58 value) {
this.invstmtAcctDtls = value;
return this;
}
/**
* Gets the value of the finInstrmDtls property.
*
* @return
* possible object is
* {@link FinancialInstrument57 }
*
*/
public FinancialInstrument57 getFinInstrmDtls() {
return finInstrmDtls;
}
/**
* Sets the value of the finInstrmDtls property.
*
* @param value
* allowed object is
* {@link FinancialInstrument57 }
*
*/
public IndividualOrderConfirmationStatusAndReason2 setFinInstrmDtls(FinancialInstrument57 value) {
this.finInstrmDtls = 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