com.prowidesoftware.swift.model.mx.dic.InstructionCancellationRequestStatus3Choice 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
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;
/**
* Choice between different instruction cancellation request statuses.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InstructionCancellationRequestStatus3Choice", propOrder = {
"cxlCmpltd",
"accptd",
"rjctd",
"pdgCxl",
"prtrySts"
})
public class InstructionCancellationRequestStatus3Choice {
@XmlElement(name = "CxlCmpltd")
protected CancelledStatus3Choice cxlCmpltd;
@XmlElement(name = "Accptd")
protected AcceptedStatus1Choice accptd;
@XmlElement(name = "Rjctd")
protected RejectedStatus1Choice rjctd;
@XmlElement(name = "PdgCxl")
protected PendingCancellationStatus1Choice pdgCxl;
@XmlElement(name = "PrtrySts")
protected ProprietaryStatusAndReason1 prtrySts;
/**
* Gets the value of the cxlCmpltd property.
*
* @return
* possible object is
* {@link CancelledStatus3Choice }
*
*/
public CancelledStatus3Choice getCxlCmpltd() {
return cxlCmpltd;
}
/**
* Sets the value of the cxlCmpltd property.
*
* @param value
* allowed object is
* {@link CancelledStatus3Choice }
*
*/
public InstructionCancellationRequestStatus3Choice setCxlCmpltd(CancelledStatus3Choice value) {
this.cxlCmpltd = value;
return this;
}
/**
* Gets the value of the accptd property.
*
* @return
* possible object is
* {@link AcceptedStatus1Choice }
*
*/
public AcceptedStatus1Choice getAccptd() {
return accptd;
}
/**
* Sets the value of the accptd property.
*
* @param value
* allowed object is
* {@link AcceptedStatus1Choice }
*
*/
public InstructionCancellationRequestStatus3Choice setAccptd(AcceptedStatus1Choice value) {
this.accptd = value;
return this;
}
/**
* Gets the value of the rjctd property.
*
* @return
* possible object is
* {@link RejectedStatus1Choice }
*
*/
public RejectedStatus1Choice getRjctd() {
return rjctd;
}
/**
* Sets the value of the rjctd property.
*
* @param value
* allowed object is
* {@link RejectedStatus1Choice }
*
*/
public InstructionCancellationRequestStatus3Choice setRjctd(RejectedStatus1Choice value) {
this.rjctd = value;
return this;
}
/**
* Gets the value of the pdgCxl property.
*
* @return
* possible object is
* {@link PendingCancellationStatus1Choice }
*
*/
public PendingCancellationStatus1Choice getPdgCxl() {
return pdgCxl;
}
/**
* Sets the value of the pdgCxl property.
*
* @param value
* allowed object is
* {@link PendingCancellationStatus1Choice }
*
*/
public InstructionCancellationRequestStatus3Choice setPdgCxl(PendingCancellationStatus1Choice value) {
this.pdgCxl = value;
return this;
}
/**
* Gets the value of the prtrySts property.
*
* @return
* possible object is
* {@link ProprietaryStatusAndReason1 }
*
*/
public ProprietaryStatusAndReason1 getPrtrySts() {
return prtrySts;
}
/**
* Sets the value of the prtrySts property.
*
* @param value
* allowed object is
* {@link ProprietaryStatusAndReason1 }
*
*/
public InstructionCancellationRequestStatus3Choice setPrtrySts(ProprietaryStatusAndReason1 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