com.prowidesoftware.swift.model.mx.dic.Status29Choice 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 statuses.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Status29Choice", propOrder = {
"prtry",
"mtchgSts",
"ifrrdMtchgSts",
"sttlmSts",
"instrPrcgSts"
})
public class Status29Choice {
@XmlElement(name = "Prtry")
protected ProprietaryStatusAndReason6 prtry;
@XmlElement(name = "MtchgSts")
protected MatchingStatus24Choice mtchgSts;
@XmlElement(name = "IfrrdMtchgSts")
protected MatchingStatus24Choice ifrrdMtchgSts;
@XmlElement(name = "SttlmSts")
protected SettlementStatus17Choice sttlmSts;
@XmlElement(name = "InstrPrcgSts")
protected InstructionProcessingStatus33Choice instrPrcgSts;
/**
* Gets the value of the prtry property.
*
* @return
* possible object is
* {@link ProprietaryStatusAndReason6 }
*
*/
public ProprietaryStatusAndReason6 getPrtry() {
return prtry;
}
/**
* Sets the value of the prtry property.
*
* @param value
* allowed object is
* {@link ProprietaryStatusAndReason6 }
*
*/
public Status29Choice setPrtry(ProprietaryStatusAndReason6 value) {
this.prtry = value;
return this;
}
/**
* Gets the value of the mtchgSts property.
*
* @return
* possible object is
* {@link MatchingStatus24Choice }
*
*/
public MatchingStatus24Choice getMtchgSts() {
return mtchgSts;
}
/**
* Sets the value of the mtchgSts property.
*
* @param value
* allowed object is
* {@link MatchingStatus24Choice }
*
*/
public Status29Choice setMtchgSts(MatchingStatus24Choice value) {
this.mtchgSts = value;
return this;
}
/**
* Gets the value of the ifrrdMtchgSts property.
*
* @return
* possible object is
* {@link MatchingStatus24Choice }
*
*/
public MatchingStatus24Choice getIfrrdMtchgSts() {
return ifrrdMtchgSts;
}
/**
* Sets the value of the ifrrdMtchgSts property.
*
* @param value
* allowed object is
* {@link MatchingStatus24Choice }
*
*/
public Status29Choice setIfrrdMtchgSts(MatchingStatus24Choice value) {
this.ifrrdMtchgSts = value;
return this;
}
/**
* Gets the value of the sttlmSts property.
*
* @return
* possible object is
* {@link SettlementStatus17Choice }
*
*/
public SettlementStatus17Choice getSttlmSts() {
return sttlmSts;
}
/**
* Sets the value of the sttlmSts property.
*
* @param value
* allowed object is
* {@link SettlementStatus17Choice }
*
*/
public Status29Choice setSttlmSts(SettlementStatus17Choice value) {
this.sttlmSts = value;
return this;
}
/**
* Gets the value of the instrPrcgSts property.
*
* @return
* possible object is
* {@link InstructionProcessingStatus33Choice }
*
*/
public InstructionProcessingStatus33Choice getInstrPrcgSts() {
return instrPrcgSts;
}
/**
* Sets the value of the instrPrcgSts property.
*
* @param value
* allowed object is
* {@link InstructionProcessingStatus33Choice }
*
*/
public Status29Choice setInstrPrcgSts(InstructionProcessingStatus33Choice value) {
this.instrPrcgSts = 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