com.prowidesoftware.swift.model.mx.dic.DetailedAmount10 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.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;
/**
* Additional amounts from the processor or the issuer without financial impacts on the transaction amount.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DetailedAmount10", propOrder = {
"tp",
"addtlTp",
"amt",
"labl"
})
public class DetailedAmount10 {
@XmlElement(name = "Tp", required = true)
@XmlSchemaType(name = "string")
protected TypeOfAmount6Code tp;
@XmlElement(name = "AddtlTp")
protected String addtlTp;
@XmlElement(name = "Amt", required = true)
protected CurrencyAndAmount amt;
@XmlElement(name = "Labl")
protected String labl;
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link TypeOfAmount6Code }
*
*/
public TypeOfAmount6Code getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link TypeOfAmount6Code }
*
*/
public DetailedAmount10 setTp(TypeOfAmount6Code value) {
this.tp = value;
return this;
}
/**
* Gets the value of the addtlTp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddtlTp() {
return addtlTp;
}
/**
* Sets the value of the addtlTp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public DetailedAmount10 setAddtlTp(String value) {
this.addtlTp = value;
return this;
}
/**
* Gets the value of the amt property.
*
* @return
* possible object is
* {@link CurrencyAndAmount }
*
*/
public CurrencyAndAmount getAmt() {
return amt;
}
/**
* Sets the value of the amt property.
*
* @param value
* allowed object is
* {@link CurrencyAndAmount }
*
*/
public DetailedAmount10 setAmt(CurrencyAndAmount value) {
this.amt = value;
return this;
}
/**
* Gets the value of the labl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabl() {
return labl;
}
/**
* Sets the value of the labl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public DetailedAmount10 setLabl(String value) {
this.labl = 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