com.prowidesoftware.swift.model.mx.dic.EventInformation16 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
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.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 = "EventInformation16", propOrder = {
"corpActnEvtId",
"offclCorpActnEvtId",
"evtTp",
"mndtryVlntryEvtTp",
"lastNtfctnId"
})
public class EventInformation16 {
@XmlElement(name = "CorpActnEvtId", required = true)
protected String corpActnEvtId;
@XmlElement(name = "OffclCorpActnEvtId")
protected String offclCorpActnEvtId;
@XmlElement(name = "EvtTp", required = true)
protected CorporateActionEventType103Choice evtTp;
@XmlElement(name = "MndtryVlntryEvtTp", required = true)
protected CorporateActionMandatoryVoluntary4Choice mndtryVlntryEvtTp;
@XmlElement(name = "LastNtfctnId")
protected NotificationIdentification6 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 EventInformation16 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 EventInformation16 setOffclCorpActnEvtId(String value) {
this.offclCorpActnEvtId = value;
return this;
}
/**
* Gets the value of the evtTp property.
*
* @return
* possible object is
* {@link CorporateActionEventType103Choice }
*
*/
public CorporateActionEventType103Choice getEvtTp() {
return evtTp;
}
/**
* Sets the value of the evtTp property.
*
* @param value
* allowed object is
* {@link CorporateActionEventType103Choice }
*
*/
public EventInformation16 setEvtTp(CorporateActionEventType103Choice value) {
this.evtTp = value;
return this;
}
/**
* Gets the value of the mndtryVlntryEvtTp property.
*
* @return
* possible object is
* {@link CorporateActionMandatoryVoluntary4Choice }
*
*/
public CorporateActionMandatoryVoluntary4Choice getMndtryVlntryEvtTp() {
return mndtryVlntryEvtTp;
}
/**
* Sets the value of the mndtryVlntryEvtTp property.
*
* @param value
* allowed object is
* {@link CorporateActionMandatoryVoluntary4Choice }
*
*/
public EventInformation16 setMndtryVlntryEvtTp(CorporateActionMandatoryVoluntary4Choice value) {
this.mndtryVlntryEvtTp = value;
return this;
}
/**
* Gets the value of the lastNtfctnId property.
*
* @return
* possible object is
* {@link NotificationIdentification6 }
*
*/
public NotificationIdentification6 getLastNtfctnId() {
return lastNtfctnId;
}
/**
* Sets the value of the lastNtfctnId property.
*
* @param value
* allowed object is
* {@link NotificationIdentification6 }
*
*/
public EventInformation16 setLastNtfctnId(NotificationIdentification6 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