
com.prowidesoftware.swift.model.mx.dic.EventInformation5 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;
/**
* Provides information about event of a corporate action.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EventInformation5", propOrder = {
"corpActnEvtId",
"offclCorpActnEvtId",
"evtTp",
"mndtryVlntryEvtTp",
"lastNtfctnId"
})
public class EventInformation5 {
@XmlElement(name = "CorpActnEvtId", required = true)
protected String corpActnEvtId;
@XmlElement(name = "OffclCorpActnEvtId")
protected String offclCorpActnEvtId;
@XmlElement(name = "EvtTp", required = true)
protected CorporateActionEventType11Choice evtTp;
@XmlElement(name = "MndtryVlntryEvtTp", required = true)
protected CorporateActionMandatoryVoluntary1Choice mndtryVlntryEvtTp;
@XmlElement(name = "LastNtfctnId")
protected NotificationIdentification1 lastNtfctnId;
/**
* Gets the value of the corpActnEvtId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCorpActnEvtId() {
return corpActnEvtId;
}
/**
* Sets the value of the corpActnEvtId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public EventInformation5 setCorpActnEvtId(String value) {
this.corpActnEvtId = value;
return this;
}
/**
* Gets the value of the offclCorpActnEvtId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOffclCorpActnEvtId() {
return offclCorpActnEvtId;
}
/**
* Sets the value of the offclCorpActnEvtId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public EventInformation5 setOffclCorpActnEvtId(String value) {
this.offclCorpActnEvtId = value;
return this;
}
/**
* Gets the value of the evtTp property.
*
* @return
* possible object is
* {@link CorporateActionEventType11Choice }
*
*/
public CorporateActionEventType11Choice getEvtTp() {
return evtTp;
}
/**
* Sets the value of the evtTp property.
*
* @param value
* allowed object is
* {@link CorporateActionEventType11Choice }
*
*/
public EventInformation5 setEvtTp(CorporateActionEventType11Choice value) {
this.evtTp = value;
return this;
}
/**
* Gets the value of the mndtryVlntryEvtTp property.
*
* @return
* possible object is
* {@link CorporateActionMandatoryVoluntary1Choice }
*
*/
public CorporateActionMandatoryVoluntary1Choice getMndtryVlntryEvtTp() {
return mndtryVlntryEvtTp;
}
/**
* Sets the value of the mndtryVlntryEvtTp property.
*
* @param value
* allowed object is
* {@link CorporateActionMandatoryVoluntary1Choice }
*
*/
public EventInformation5 setMndtryVlntryEvtTp(CorporateActionMandatoryVoluntary1Choice value) {
this.mndtryVlntryEvtTp = value;
return this;
}
/**
* Gets the value of the lastNtfctnId property.
*
* @return
* possible object is
* {@link NotificationIdentification1 }
*
*/
public NotificationIdentification1 getLastNtfctnId() {
return lastNtfctnId;
}
/**
* Sets the value of the lastNtfctnId property.
*
* @param value
* allowed object is
* {@link NotificationIdentification1 }
*
*/
public EventInformation5 setLastNtfctnId(NotificationIdentification1 value) {
this.lastNtfctnId = 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