com.prowidesoftware.swift.model.mx.dic.StatusChangeRequestAcceptanceV02 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;
/**
* Scope
* The StatusChangeRequestAcceptance message is sent by the party requested to accept or reject the request of a change in the status of a transaction to the matching application.
* This message is used to inform about the acceptance of a request to change the status of a transaction.
* Usage
* The StatusChangeRequestAcceptance message can be sent by the party requested to accept or reject a request to change the status of a transaction to inform that it accepts the request.
* The message can be sent in response to a StatusChangeRequestNotification message.
* The rejection of a request to change the status of a transaction can be achieved by sending a StatusChangeRequestRejection message.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StatusChangeRequestAcceptanceV02", propOrder = {
"accptncId",
"txId",
"submitrTxRef",
"accptdSts"
})
public class StatusChangeRequestAcceptanceV02 {
@XmlElement(name = "AccptncId", required = true)
protected MessageIdentification1 accptncId;
@XmlElement(name = "TxId", required = true)
protected SimpleIdentificationInformation txId;
@XmlElement(name = "SubmitrTxRef")
protected SimpleIdentificationInformation submitrTxRef;
@XmlElement(name = "AccptdSts", required = true)
protected TransactionStatus3 accptdSts;
/**
* Gets the value of the accptncId property.
*
* @return
* possible object is
* {@link MessageIdentification1 }
*
*/
public MessageIdentification1 getAccptncId() {
return accptncId;
}
/**
* Sets the value of the accptncId property.
*
* @param value
* allowed object is
* {@link MessageIdentification1 }
*
*/
public StatusChangeRequestAcceptanceV02 setAccptncId(MessageIdentification1 value) {
this.accptncId = value;
return this;
}
/**
* Gets the value of the txId property.
*
* @return
* possible object is
* {@link SimpleIdentificationInformation }
*
*/
public SimpleIdentificationInformation getTxId() {
return txId;
}
/**
* Sets the value of the txId property.
*
* @param value
* allowed object is
* {@link SimpleIdentificationInformation }
*
*/
public StatusChangeRequestAcceptanceV02 setTxId(SimpleIdentificationInformation value) {
this.txId = value;
return this;
}
/**
* Gets the value of the submitrTxRef property.
*
* @return
* possible object is
* {@link SimpleIdentificationInformation }
*
*/
public SimpleIdentificationInformation getSubmitrTxRef() {
return submitrTxRef;
}
/**
* Sets the value of the submitrTxRef property.
*
* @param value
* allowed object is
* {@link SimpleIdentificationInformation }
*
*/
public StatusChangeRequestAcceptanceV02 setSubmitrTxRef(SimpleIdentificationInformation value) {
this.submitrTxRef = value;
return this;
}
/**
* Gets the value of the accptdSts property.
*
* @return
* possible object is
* {@link TransactionStatus3 }
*
*/
public TransactionStatus3 getAccptdSts() {
return accptdSts;
}
/**
* Sets the value of the accptdSts property.
*
* @param value
* allowed object is
* {@link TransactionStatus3 }
*
*/
public StatusChangeRequestAcceptanceV02 setAccptdSts(TransactionStatus3 value) {
this.accptdSts = 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