com.prowidesoftware.swift.model.mx.dic.CashDeposit1 Maven / Gradle / Ivy
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;
/**
* Deposit of an amount of money defined in cash notes and/or coins.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CashDeposit1", propOrder = {
"noteDnmtn",
"nbOfNotes",
"amt"
})
public class CashDeposit1 {
@XmlElement(name = "NoteDnmtn", required = true)
protected ActiveCurrencyAndAmount noteDnmtn;
@XmlElement(name = "NbOfNotes", required = true)
protected String nbOfNotes;
@XmlElement(name = "Amt", required = true)
protected ActiveCurrencyAndAmount amt;
/**
* Gets the value of the noteDnmtn property.
*
* @return
* possible object is
* {@link ActiveCurrencyAndAmount }
*
*/
public ActiveCurrencyAndAmount getNoteDnmtn() {
return noteDnmtn;
}
/**
* Sets the value of the noteDnmtn property.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAndAmount }
*
*/
public CashDeposit1 setNoteDnmtn(ActiveCurrencyAndAmount value) {
this.noteDnmtn = value;
return this;
}
/**
* Gets the value of the nbOfNotes property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNbOfNotes() {
return nbOfNotes;
}
/**
* Sets the value of the nbOfNotes property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CashDeposit1 setNbOfNotes(String value) {
this.nbOfNotes = value;
return this;
}
/**
* Gets the value of the amt property.
*
* @return
* possible object is
* {@link ActiveCurrencyAndAmount }
*
*/
public ActiveCurrencyAndAmount getAmt() {
return amt;
}
/**
* Sets the value of the amt property.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAndAmount }
*
*/
public CashDeposit1 setAmt(ActiveCurrencyAndAmount value) {
this.amt = 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