com.prowidesoftware.swift.model.mx.dic.MarketClaimProcessingStatus1Choice 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;
/**
* Choice between different instruction processing statuses.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MarketClaimProcessingStatus1Choice", propOrder = {
"canc",
"accptdForFrthrPrcg",
"rjctd",
"pdg",
"mtchgSts",
"prtrySts"
})
public class MarketClaimProcessingStatus1Choice {
@XmlElement(name = "Canc")
protected CancelledStatus12Choice canc;
@XmlElement(name = "AccptdForFrthrPrcg")
protected AcceptedStatus8Choice accptdForFrthrPrcg;
@XmlElement(name = "Rjctd")
protected RejectedStatus37Choice rjctd;
@XmlElement(name = "Pdg")
protected PendingStatus63Choice pdg;
@XmlElement(name = "MtchgSts")
protected MatchingStatus34Choice mtchgSts;
@XmlElement(name = "PrtrySts")
protected ProprietaryStatusAndReason6 prtrySts;
/**
* Gets the value of the canc property.
*
* @return
* possible object is
* {@link CancelledStatus12Choice }
*
*/
public CancelledStatus12Choice getCanc() {
return canc;
}
/**
* Sets the value of the canc property.
*
* @param value
* allowed object is
* {@link CancelledStatus12Choice }
*
*/
public MarketClaimProcessingStatus1Choice setCanc(CancelledStatus12Choice value) {
this.canc = value;
return this;
}
/**
* Gets the value of the accptdForFrthrPrcg property.
*
* @return
* possible object is
* {@link AcceptedStatus8Choice }
*
*/
public AcceptedStatus8Choice getAccptdForFrthrPrcg() {
return accptdForFrthrPrcg;
}
/**
* Sets the value of the accptdForFrthrPrcg property.
*
* @param value
* allowed object is
* {@link AcceptedStatus8Choice }
*
*/
public MarketClaimProcessingStatus1Choice setAccptdForFrthrPrcg(AcceptedStatus8Choice value) {
this.accptdForFrthrPrcg = value;
return this;
}
/**
* Gets the value of the rjctd property.
*
* @return
* possible object is
* {@link RejectedStatus37Choice }
*
*/
public RejectedStatus37Choice getRjctd() {
return rjctd;
}
/**
* Sets the value of the rjctd property.
*
* @param value
* allowed object is
* {@link RejectedStatus37Choice }
*
*/
public MarketClaimProcessingStatus1Choice setRjctd(RejectedStatus37Choice value) {
this.rjctd = value;
return this;
}
/**
* Gets the value of the pdg property.
*
* @return
* possible object is
* {@link PendingStatus63Choice }
*
*/
public PendingStatus63Choice getPdg() {
return pdg;
}
/**
* Sets the value of the pdg property.
*
* @param value
* allowed object is
* {@link PendingStatus63Choice }
*
*/
public MarketClaimProcessingStatus1Choice setPdg(PendingStatus63Choice value) {
this.pdg = value;
return this;
}
/**
* Gets the value of the mtchgSts property.
*
* @return
* possible object is
* {@link MatchingStatus34Choice }
*
*/
public MatchingStatus34Choice getMtchgSts() {
return mtchgSts;
}
/**
* Sets the value of the mtchgSts property.
*
* @param value
* allowed object is
* {@link MatchingStatus34Choice }
*
*/
public MarketClaimProcessingStatus1Choice setMtchgSts(MatchingStatus34Choice value) {
this.mtchgSts = value;
return this;
}
/**
* Gets the value of the prtrySts property.
*
* @return
* possible object is
* {@link ProprietaryStatusAndReason6 }
*
*/
public ProprietaryStatusAndReason6 getPrtrySts() {
return prtrySts;
}
/**
* Sets the value of the prtrySts property.
*
* @param value
* allowed object is
* {@link ProprietaryStatusAndReason6 }
*
*/
public MarketClaimProcessingStatus1Choice setPrtrySts(ProprietaryStatusAndReason6 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