
com.prowidesoftware.swift.model.mx.dic.IndividualOrderStatusAndReason5 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.XmlSchemaType;
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 order that was previously received.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IndividualOrderStatusAndReason5", propOrder = {
"mstrRef",
"ordrRef",
"sts",
"canc",
"rjctd"
})
public class IndividualOrderStatusAndReason5 {
@XmlElement(name = "MstrRef")
protected String mstrRef;
@XmlElement(name = "OrdrRef", required = true)
protected String ordrRef;
@XmlElement(name = "Sts")
@XmlSchemaType(name = "string")
protected OrderStatus7Code sts;
@XmlElement(name = "Canc")
protected CancelledStatus4 canc;
@XmlElement(name = "Rjctd")
protected RejectedStatus8 rjctd;
/**
* 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 IndividualOrderStatusAndReason5 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 IndividualOrderStatusAndReason5 setOrdrRef(String value) {
this.ordrRef = value;
return this;
}
/**
* Gets the value of the sts property.
*
* @return
* possible object is
* {@link OrderStatus7Code }
*
*/
public OrderStatus7Code getSts() {
return sts;
}
/**
* Sets the value of the sts property.
*
* @param value
* allowed object is
* {@link OrderStatus7Code }
*
*/
public IndividualOrderStatusAndReason5 setSts(OrderStatus7Code value) {
this.sts = value;
return this;
}
/**
* Gets the value of the canc property.
*
* @return
* possible object is
* {@link CancelledStatus4 }
*
*/
public CancelledStatus4 getCanc() {
return canc;
}
/**
* Sets the value of the canc property.
*
* @param value
* allowed object is
* {@link CancelledStatus4 }
*
*/
public IndividualOrderStatusAndReason5 setCanc(CancelledStatus4 value) {
this.canc = value;
return this;
}
/**
* Gets the value of the rjctd property.
*
* @return
* possible object is
* {@link RejectedStatus8 }
*
*/
public RejectedStatus8 getRjctd() {
return rjctd;
}
/**
* Sets the value of the rjctd property.
*
* @param value
* allowed object is
* {@link RejectedStatus8 }
*
*/
public IndividualOrderStatusAndReason5 setRjctd(RejectedStatus8 value) {
this.rjctd = 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