com.prowidesoftware.swift.model.mx.dic.CashBalance10 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.math.BigDecimal;
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 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;
/**
* Balance details for a cash account.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CashBalance10", propOrder = {
"amt",
"cdtDbtInd",
"tp",
"sts",
"valDt",
"nbOfPmts",
"rstrctnTp"
})
public class CashBalance10 {
@XmlElement(name = "Amt", required = true)
protected BigDecimal amt;
@XmlElement(name = "CdtDbtInd", required = true)
@XmlSchemaType(name = "string")
protected CreditDebitCode cdtDbtInd;
@XmlElement(name = "Tp")
protected BalanceType8Choice tp;
@XmlElement(name = "Sts")
@XmlSchemaType(name = "string")
protected BalanceStatus1Code sts;
@XmlElement(name = "ValDt")
protected DateAndDateTime2Choice valDt;
@XmlElement(name = "NbOfPmts")
protected BigDecimal nbOfPmts;
@XmlElement(name = "RstrctnTp")
protected BalanceRestrictionType1 rstrctnTp;
/**
* Gets the value of the amt property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getAmt() {
return amt;
}
/**
* Sets the value of the amt property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public CashBalance10 setAmt(BigDecimal value) {
this.amt = value;
return this;
}
/**
* Gets the value of the cdtDbtInd property.
*
* @return
* possible object is
* {@link CreditDebitCode }
*
*/
public CreditDebitCode getCdtDbtInd() {
return cdtDbtInd;
}
/**
* Sets the value of the cdtDbtInd property.
*
* @param value
* allowed object is
* {@link CreditDebitCode }
*
*/
public CashBalance10 setCdtDbtInd(CreditDebitCode value) {
this.cdtDbtInd = value;
return this;
}
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link BalanceType8Choice }
*
*/
public BalanceType8Choice getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link BalanceType8Choice }
*
*/
public CashBalance10 setTp(BalanceType8Choice value) {
this.tp = value;
return this;
}
/**
* Gets the value of the sts property.
*
* @return
* possible object is
* {@link BalanceStatus1Code }
*
*/
public BalanceStatus1Code getSts() {
return sts;
}
/**
* Sets the value of the sts property.
*
* @param value
* allowed object is
* {@link BalanceStatus1Code }
*
*/
public CashBalance10 setSts(BalanceStatus1Code value) {
this.sts = value;
return this;
}
/**
* Gets the value of the valDt property.
*
* @return
* possible object is
* {@link DateAndDateTime2Choice }
*
*/
public DateAndDateTime2Choice getValDt() {
return valDt;
}
/**
* Sets the value of the valDt property.
*
* @param value
* allowed object is
* {@link DateAndDateTime2Choice }
*
*/
public CashBalance10 setValDt(DateAndDateTime2Choice value) {
this.valDt = value;
return this;
}
/**
* Gets the value of the nbOfPmts property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getNbOfPmts() {
return nbOfPmts;
}
/**
* Sets the value of the nbOfPmts property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public CashBalance10 setNbOfPmts(BigDecimal value) {
this.nbOfPmts = value;
return this;
}
/**
* Gets the value of the rstrctnTp property.
*
* @return
* possible object is
* {@link BalanceRestrictionType1 }
*
*/
public BalanceRestrictionType1 getRstrctnTp() {
return rstrctnTp;
}
/**
* Sets the value of the rstrctnTp property.
*
* @param value
* allowed object is
* {@link BalanceRestrictionType1 }
*
*/
public CashBalance10 setRstrctnTp(BalanceRestrictionType1 value) {
this.rstrctnTp = 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