
com.prowidesoftware.swift.model.mx.dic.SettlementInstructionStatus1 Maven / Gradle / Ivy
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.XmlSchemaType;
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;
/**
* Specifies the details of the status of the cash settlement instruction.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SettlementInstructionStatus1", propOrder = {
"endToEndId",
"cshAcct",
"sts",
"acctSvcrRef"
})
public class SettlementInstructionStatus1 {
@XmlElement(name = "EndToEndId")
protected String endToEndId;
@XmlElement(name = "CshAcct")
protected CashAccount24 cshAcct;
@XmlElement(name = "Sts", required = true)
@XmlSchemaType(name = "string")
protected CashSettlementStatus1Code sts;
@XmlElement(name = "AcctSvcrRef")
protected String acctSvcrRef;
/**
* Gets the value of the endToEndId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEndToEndId() {
return endToEndId;
}
/**
* Sets the value of the endToEndId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SettlementInstructionStatus1 setEndToEndId(String value) {
this.endToEndId = value;
return this;
}
/**
* Gets the value of the cshAcct property.
*
* @return
* possible object is
* {@link CashAccount24 }
*
*/
public CashAccount24 getCshAcct() {
return cshAcct;
}
/**
* Sets the value of the cshAcct property.
*
* @param value
* allowed object is
* {@link CashAccount24 }
*
*/
public SettlementInstructionStatus1 setCshAcct(CashAccount24 value) {
this.cshAcct = value;
return this;
}
/**
* Gets the value of the sts property.
*
* @return
* possible object is
* {@link CashSettlementStatus1Code }
*
*/
public CashSettlementStatus1Code getSts() {
return sts;
}
/**
* Sets the value of the sts property.
*
* @param value
* allowed object is
* {@link CashSettlementStatus1Code }
*
*/
public SettlementInstructionStatus1 setSts(CashSettlementStatus1Code value) {
this.sts = value;
return this;
}
/**
* Gets the value of the acctSvcrRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAcctSvcrRef() {
return acctSvcrRef;
}
/**
* Sets the value of the acctSvcrRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SettlementInstructionStatus1 setAcctSvcrRef(String value) {
this.acctSvcrRef = 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