com.prowidesoftware.swift.model.mx.dic.TradeData4 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
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 javax.xml.datatype.XMLGregorianCalendar;
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;
/**
* Provides information on the status of a trade.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TradeData4", propOrder = {
"stsOrgtr",
"curSts",
"curStsSubTp",
"curStsDtTm",
"prvsSts",
"prvsStsSubTp",
"pdctTp"
})
public class TradeData4 {
@XmlElement(name = "StsOrgtr")
protected String stsOrgtr;
@XmlElement(name = "CurSts", required = true)
protected Status5Choice curSts;
@XmlElement(name = "CurStsSubTp")
protected String curStsSubTp;
@XmlElement(name = "CurStsDtTm", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar curStsDtTm;
@XmlElement(name = "PrvsSts")
protected Status5Choice prvsSts;
@XmlElement(name = "PrvsStsSubTp")
protected String prvsStsSubTp;
@XmlElement(name = "PdctTp")
protected String pdctTp;
/**
* Gets the value of the stsOrgtr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStsOrgtr() {
return stsOrgtr;
}
/**
* Sets the value of the stsOrgtr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TradeData4 setStsOrgtr(String value) {
this.stsOrgtr = value;
return this;
}
/**
* Gets the value of the curSts property.
*
* @return
* possible object is
* {@link Status5Choice }
*
*/
public Status5Choice getCurSts() {
return curSts;
}
/**
* Sets the value of the curSts property.
*
* @param value
* allowed object is
* {@link Status5Choice }
*
*/
public TradeData4 setCurSts(Status5Choice value) {
this.curSts = value;
return this;
}
/**
* Gets the value of the curStsSubTp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCurStsSubTp() {
return curStsSubTp;
}
/**
* Sets the value of the curStsSubTp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TradeData4 setCurStsSubTp(String value) {
this.curStsSubTp = value;
return this;
}
/**
* Gets the value of the curStsDtTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCurStsDtTm() {
return curStsDtTm;
}
/**
* Sets the value of the curStsDtTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public TradeData4 setCurStsDtTm(XMLGregorianCalendar value) {
this.curStsDtTm = value;
return this;
}
/**
* Gets the value of the prvsSts property.
*
* @return
* possible object is
* {@link Status5Choice }
*
*/
public Status5Choice getPrvsSts() {
return prvsSts;
}
/**
* Sets the value of the prvsSts property.
*
* @param value
* allowed object is
* {@link Status5Choice }
*
*/
public TradeData4 setPrvsSts(Status5Choice value) {
this.prvsSts = value;
return this;
}
/**
* Gets the value of the prvsStsSubTp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrvsStsSubTp() {
return prvsStsSubTp;
}
/**
* Sets the value of the prvsStsSubTp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TradeData4 setPrvsStsSubTp(String value) {
this.prvsStsSubTp = value;
return this;
}
/**
* Gets the value of the pdctTp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPdctTp() {
return pdctTp;
}
/**
* Sets the value of the pdctTp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TradeData4 setPdctTp(String value) {
this.pdctTp = 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