
com.prowidesoftware.swift.model.mx.dic.Instalment2 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 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;
/**
* Specifies a single instalment related to an invoice settlement and optional reconciliation information.
* Reconciliation information is used to indicate the amount to be allocated to a particular instalment of a financial document.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Instalment2", propOrder = {
"seqId",
"pmtDueDt",
"amt",
"pmtInstrm"
})
public class Instalment2 {
@XmlElement(name = "SeqId", required = true)
protected String seqId;
@XmlElement(name = "PmtDueDt", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar pmtDueDt;
@XmlElement(name = "Amt", required = true)
protected ActiveCurrencyAndAmount amt;
@XmlElement(name = "PmtInstrm")
protected PaymentMeans1 pmtInstrm;
/**
* Gets the value of the seqId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSeqId() {
return seqId;
}
/**
* Sets the value of the seqId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Instalment2 setSeqId(String value) {
this.seqId = value;
return this;
}
/**
* Gets the value of the pmtDueDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getPmtDueDt() {
return pmtDueDt;
}
/**
* Sets the value of the pmtDueDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public Instalment2 setPmtDueDt(XMLGregorianCalendar value) {
this.pmtDueDt = 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 Instalment2 setAmt(ActiveCurrencyAndAmount value) {
this.amt = value;
return this;
}
/**
* Gets the value of the pmtInstrm property.
*
* @return
* possible object is
* {@link PaymentMeans1 }
*
*/
public PaymentMeans1 getPmtInstrm() {
return pmtInstrm;
}
/**
* Sets the value of the pmtInstrm property.
*
* @param value
* allowed object is
* {@link PaymentMeans1 }
*
*/
public Instalment2 setPmtInstrm(PaymentMeans1 value) {
this.pmtInstrm = 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