
com.prowidesoftware.swift.model.mx.dic.EventGroup1 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 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 the significant events scheduled during the life of a security. Eg, a callable bond may list one or more dates at which the issuer may call the bond. An option may list put, tender or call dates.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EventGroup1", propOrder = {
"tp",
"dt",
"pric",
"desc"
})
public class EventGroup1 {
@XmlElement(name = "Tp")
@XmlSchemaType(name = "string")
protected EventType1Code tp;
@XmlElement(name = "Dt")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dt;
@XmlElement(name = "Pric")
protected Price1 pric;
@XmlElement(name = "Desc")
protected String desc;
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link EventType1Code }
*
*/
public EventType1Code getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link EventType1Code }
*
*/
public EventGroup1 setTp(EventType1Code value) {
this.tp = value;
return this;
}
/**
* Gets the value of the dt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDt() {
return dt;
}
/**
* Sets the value of the dt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public EventGroup1 setDt(XMLGregorianCalendar value) {
this.dt = value;
return this;
}
/**
* Gets the value of the pric property.
*
* @return
* possible object is
* {@link Price1 }
*
*/
public Price1 getPric() {
return pric;
}
/**
* Sets the value of the pric property.
*
* @param value
* allowed object is
* {@link Price1 }
*
*/
public EventGroup1 setPric(Price1 value) {
this.pric = value;
return this;
}
/**
* Gets the value of the desc property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDesc() {
return desc;
}
/**
* Sets the value of the desc property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public EventGroup1 setDesc(String value) {
this.desc = 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