com.prowidesoftware.swift.model.mx.dic.TransferInCancellationRequestV02 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
* An instructing party, eg, a transfer agent, sends the TransferInCancellationRequest message to the executing party, eg, a transfer agent, to request the cancellation of a previously sent TransferInInstruction.
* Usage
* The TransferInCancellationRequest message is used to request cancellation of a previously sent TransferInInstruction.
* There are two ways to specify the transfer cancellation request. Either:
* - the transfer reference of the original transfer is quoted, or,
* - all the details of the original transfer (this includes TransferReference) are quoted but this is not recommended.
* The message identification of the TransferInInstruction message in which the transfer was conveyed may also be quoted in PreviousReference. It is also possible to request the cancellation of a TransferInInstruction message by quoting its message identification in PreviousReference.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TransferInCancellationRequestV02", propOrder = {
"msgId",
"prvsRef",
"poolRef",
"rltdRef",
"cxlByRef",
"cxlByTrfInDtls",
"cpyDtls"
})
public class TransferInCancellationRequestV02 {
@XmlElement(name = "MsgId", required = true)
protected MessageIdentification1 msgId;
@XmlElement(name = "PrvsRef")
protected AdditionalReference2 prvsRef;
@XmlElement(name = "PoolRef")
protected AdditionalReference2 poolRef;
@XmlElement(name = "RltdRef")
protected AdditionalReference2 rltdRef;
@XmlElement(name = "CxlByRef")
protected TransferReference1 cxlByRef;
@XmlElement(name = "CxlByTrfInDtls")
protected TransferIn3 cxlByTrfInDtls;
@XmlElement(name = "CpyDtls")
protected CopyInformation2 cpyDtls;
/**
* Gets the value of the msgId property.
*
* @return
* possible object is
* {@link MessageIdentification1 }
*
*/
public MessageIdentification1 getMsgId() {
return msgId;
}
/**
* Sets the value of the msgId property.
*
* @param value
* allowed object is
* {@link MessageIdentification1 }
*
*/
public TransferInCancellationRequestV02 setMsgId(MessageIdentification1 value) {
this.msgId = value;
return this;
}
/**
* Gets the value of the prvsRef property.
*
* @return
* possible object is
* {@link AdditionalReference2 }
*
*/
public AdditionalReference2 getPrvsRef() {
return prvsRef;
}
/**
* Sets the value of the prvsRef property.
*
* @param value
* allowed object is
* {@link AdditionalReference2 }
*
*/
public TransferInCancellationRequestV02 setPrvsRef(AdditionalReference2 value) {
this.prvsRef = value;
return this;
}
/**
* Gets the value of the poolRef property.
*
* @return
* possible object is
* {@link AdditionalReference2 }
*
*/
public AdditionalReference2 getPoolRef() {
return poolRef;
}
/**
* Sets the value of the poolRef property.
*
* @param value
* allowed object is
* {@link AdditionalReference2 }
*
*/
public TransferInCancellationRequestV02 setPoolRef(AdditionalReference2 value) {
this.poolRef = value;
return this;
}
/**
* Gets the value of the rltdRef property.
*
* @return
* possible object is
* {@link AdditionalReference2 }
*
*/
public AdditionalReference2 getRltdRef() {
return rltdRef;
}
/**
* Sets the value of the rltdRef property.
*
* @param value
* allowed object is
* {@link AdditionalReference2 }
*
*/
public TransferInCancellationRequestV02 setRltdRef(AdditionalReference2 value) {
this.rltdRef = value;
return this;
}
/**
* Gets the value of the cxlByRef property.
*
* @return
* possible object is
* {@link TransferReference1 }
*
*/
public TransferReference1 getCxlByRef() {
return cxlByRef;
}
/**
* Sets the value of the cxlByRef property.
*
* @param value
* allowed object is
* {@link TransferReference1 }
*
*/
public TransferInCancellationRequestV02 setCxlByRef(TransferReference1 value) {
this.cxlByRef = value;
return this;
}
/**
* Gets the value of the cxlByTrfInDtls property.
*
* @return
* possible object is
* {@link TransferIn3 }
*
*/
public TransferIn3 getCxlByTrfInDtls() {
return cxlByTrfInDtls;
}
/**
* Sets the value of the cxlByTrfInDtls property.
*
* @param value
* allowed object is
* {@link TransferIn3 }
*
*/
public TransferInCancellationRequestV02 setCxlByTrfInDtls(TransferIn3 value) {
this.cxlByTrfInDtls = value;
return this;
}
/**
* Gets the value of the cpyDtls property.
*
* @return
* possible object is
* {@link CopyInformation2 }
*
*/
public CopyInformation2 getCpyDtls() {
return cpyDtls;
}
/**
* Sets the value of the cpyDtls property.
*
* @param value
* allowed object is
* {@link CopyInformation2 }
*
*/
public TransferInCancellationRequestV02 setCpyDtls(CopyInformation2 value) {
this.cpyDtls = 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