com.prowidesoftware.swift.model.mx.dic.IntraBalanceCancellation8 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 java.time.OffsetDateTime;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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;
/**
* Provides the details of the cancellation requests.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IntraBalanceCancellation8", propOrder = {
"cshAcct",
"cshAcctOwnr",
"cshAcctSvcr",
"prcgSts",
"reqRef",
"stsDt",
"txId",
"undrlygIntraBal"
})
public class IntraBalanceCancellation8 {
@XmlElement(name = "CshAcct")
protected CashAccount40 cshAcct;
@XmlElement(name = "CshAcctOwnr")
protected SystemPartyIdentification8 cshAcctOwnr;
@XmlElement(name = "CshAcctSvcr")
protected BranchAndFinancialInstitutionIdentification8 cshAcctSvcr;
@XmlElement(name = "PrcgSts")
protected ProcessingStatus69Choice prcgSts;
@XmlElement(name = "ReqRef", required = true)
protected String reqRef;
@XmlElement(name = "StsDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected OffsetDateTime stsDt;
@XmlElement(name = "TxId")
protected References14 txId;
@XmlElement(name = "UndrlygIntraBal")
protected IntraBalance5 undrlygIntraBal;
/**
* Gets the value of the cshAcct property.
*
* @return
* possible object is
* {@link CashAccount40 }
*
*/
public CashAccount40 getCshAcct() {
return cshAcct;
}
/**
* Sets the value of the cshAcct property.
*
* @param value
* allowed object is
* {@link CashAccount40 }
*
*/
public IntraBalanceCancellation8 setCshAcct(CashAccount40 value) {
this.cshAcct = value;
return this;
}
/**
* Gets the value of the cshAcctOwnr property.
*
* @return
* possible object is
* {@link SystemPartyIdentification8 }
*
*/
public SystemPartyIdentification8 getCshAcctOwnr() {
return cshAcctOwnr;
}
/**
* Sets the value of the cshAcctOwnr property.
*
* @param value
* allowed object is
* {@link SystemPartyIdentification8 }
*
*/
public IntraBalanceCancellation8 setCshAcctOwnr(SystemPartyIdentification8 value) {
this.cshAcctOwnr = value;
return this;
}
/**
* Gets the value of the cshAcctSvcr property.
*
* @return
* possible object is
* {@link BranchAndFinancialInstitutionIdentification8 }
*
*/
public BranchAndFinancialInstitutionIdentification8 getCshAcctSvcr() {
return cshAcctSvcr;
}
/**
* Sets the value of the cshAcctSvcr property.
*
* @param value
* allowed object is
* {@link BranchAndFinancialInstitutionIdentification8 }
*
*/
public IntraBalanceCancellation8 setCshAcctSvcr(BranchAndFinancialInstitutionIdentification8 value) {
this.cshAcctSvcr = value;
return this;
}
/**
* Gets the value of the prcgSts property.
*
* @return
* possible object is
* {@link ProcessingStatus69Choice }
*
*/
public ProcessingStatus69Choice getPrcgSts() {
return prcgSts;
}
/**
* Sets the value of the prcgSts property.
*
* @param value
* allowed object is
* {@link ProcessingStatus69Choice }
*
*/
public IntraBalanceCancellation8 setPrcgSts(ProcessingStatus69Choice value) {
this.prcgSts = value;
return this;
}
/**
* Gets the value of the reqRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getReqRef() {
return reqRef;
}
/**
* Sets the value of the reqRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public IntraBalanceCancellation8 setReqRef(String value) {
this.reqRef = value;
return this;
}
/**
* Gets the value of the stsDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public OffsetDateTime getStsDt() {
return stsDt;
}
/**
* Sets the value of the stsDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public IntraBalanceCancellation8 setStsDt(OffsetDateTime value) {
this.stsDt = value;
return this;
}
/**
* Gets the value of the txId property.
*
* @return
* possible object is
* {@link References14 }
*
*/
public References14 getTxId() {
return txId;
}
/**
* Sets the value of the txId property.
*
* @param value
* allowed object is
* {@link References14 }
*
*/
public IntraBalanceCancellation8 setTxId(References14 value) {
this.txId = value;
return this;
}
/**
* Gets the value of the undrlygIntraBal property.
*
* @return
* possible object is
* {@link IntraBalance5 }
*
*/
public IntraBalance5 getUndrlygIntraBal() {
return undrlygIntraBal;
}
/**
* Sets the value of the undrlygIntraBal property.
*
* @param value
* allowed object is
* {@link IntraBalance5 }
*
*/
public IntraBalanceCancellation8 setUndrlygIntraBal(IntraBalance5 value) {
this.undrlygIntraBal = 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