com.prowidesoftware.swift.model.mx.dic.EventProcessingStatus2Choice 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 the status of a corporate action or the status of a payment.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EventProcessingStatus2Choice", propOrder = {
"cmplt",
"rcncld",
"pdg",
"prtrySts"
})
public class EventProcessingStatus2Choice {
@XmlElement(name = "Cmplt")
protected NoSpecifiedReason1 cmplt;
@XmlElement(name = "Rcncld")
protected NoSpecifiedReason1 rcncld;
@XmlElement(name = "Pdg")
protected PendingStatus5Choice pdg;
@XmlElement(name = "PrtrySts")
protected ProprietaryStatusAndReason2 prtrySts;
/**
* Gets the value of the cmplt property.
*
* @return
* possible object is
* {@link NoSpecifiedReason1 }
*
*/
public NoSpecifiedReason1 getCmplt() {
return cmplt;
}
/**
* Sets the value of the cmplt property.
*
* @param value
* allowed object is
* {@link NoSpecifiedReason1 }
*
*/
public EventProcessingStatus2Choice setCmplt(NoSpecifiedReason1 value) {
this.cmplt = value;
return this;
}
/**
* Gets the value of the rcncld property.
*
* @return
* possible object is
* {@link NoSpecifiedReason1 }
*
*/
public NoSpecifiedReason1 getRcncld() {
return rcncld;
}
/**
* Sets the value of the rcncld property.
*
* @param value
* allowed object is
* {@link NoSpecifiedReason1 }
*
*/
public EventProcessingStatus2Choice setRcncld(NoSpecifiedReason1 value) {
this.rcncld = value;
return this;
}
/**
* Gets the value of the pdg property.
*
* @return
* possible object is
* {@link PendingStatus5Choice }
*
*/
public PendingStatus5Choice getPdg() {
return pdg;
}
/**
* Sets the value of the pdg property.
*
* @param value
* allowed object is
* {@link PendingStatus5Choice }
*
*/
public EventProcessingStatus2Choice setPdg(PendingStatus5Choice value) {
this.pdg = value;
return this;
}
/**
* Gets the value of the prtrySts property.
*
* @return
* possible object is
* {@link ProprietaryStatusAndReason2 }
*
*/
public ProprietaryStatusAndReason2 getPrtrySts() {
return prtrySts;
}
/**
* Sets the value of the prtrySts property.
*
* @param value
* allowed object is
* {@link ProprietaryStatusAndReason2 }
*
*/
public EventProcessingStatus2Choice setPrtrySts(ProprietaryStatusAndReason2 value) {
this.prtrySts = 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