com.prowidesoftware.swift.model.mx.dic.DetailedAmount6 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
package com.prowidesoftware.swift.model.mx.dic;
import java.math.BigDecimal;
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 javax.xml.datatype.XMLGregorianCalendar;
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;
/**
* Detailed amounts associated with the total amount of transaction.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DetailedAmount6", propOrder = {
"amt",
"dtTm",
"cardDataNtryMd",
"iccRltdData",
"labl"
})
public class DetailedAmount6 {
@XmlElement(name = "Amt", required = true)
protected BigDecimal amt;
@XmlElement(name = "DtTm", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dtTm;
@XmlElement(name = "CardDataNtryMd")
@XmlSchemaType(name = "string")
protected CardDataReading1Code cardDataNtryMd;
@XmlElement(name = "ICCRltdData")
protected byte[] iccRltdData;
@XmlElement(name = "Labl")
protected String labl;
/**
* 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 DetailedAmount6 setAmt(BigDecimal value) {
this.amt = value;
return this;
}
/**
* Gets the value of the dtTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDtTm() {
return dtTm;
}
/**
* Sets the value of the dtTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public DetailedAmount6 setDtTm(XMLGregorianCalendar value) {
this.dtTm = value;
return this;
}
/**
* Gets the value of the cardDataNtryMd property.
*
* @return
* possible object is
* {@link CardDataReading1Code }
*
*/
public CardDataReading1Code getCardDataNtryMd() {
return cardDataNtryMd;
}
/**
* Sets the value of the cardDataNtryMd property.
*
* @param value
* allowed object is
* {@link CardDataReading1Code }
*
*/
public DetailedAmount6 setCardDataNtryMd(CardDataReading1Code value) {
this.cardDataNtryMd = value;
return this;
}
/**
* Gets the value of the iccRltdData property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getICCRltdData() {
return iccRltdData;
}
/**
* Sets the value of the iccRltdData property.
*
* @param value
* allowed object is
* byte[]
*/
public DetailedAmount6 setICCRltdData(byte[] value) {
this.iccRltdData = 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 DetailedAmount6 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