
com.prowidesoftware.swift.model.mx.dic.OriginalInvoiceInformation1 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 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;
/**
* General information about the invoice contained in the original request.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OriginalInvoiceInformation1", propOrder = {
"docNb",
"ttlInvcAmt",
"isseDt",
"pmtDueDt"
})
public class OriginalInvoiceInformation1 {
@XmlElement(name = "DocNb", required = true)
protected String docNb;
@XmlElement(name = "TtlInvcAmt", required = true)
protected ActiveCurrencyAndAmount ttlInvcAmt;
@XmlElement(name = "IsseDt", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar isseDt;
@XmlElement(name = "PmtDueDt", required = true)
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar pmtDueDt;
/**
* Gets the value of the docNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDocNb() {
return docNb;
}
/**
* Sets the value of the docNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public OriginalInvoiceInformation1 setDocNb(String value) {
this.docNb = value;
return this;
}
/**
* Gets the value of the ttlInvcAmt property.
*
* @return
* possible object is
* {@link ActiveCurrencyAndAmount }
*
*/
public ActiveCurrencyAndAmount getTtlInvcAmt() {
return ttlInvcAmt;
}
/**
* Sets the value of the ttlInvcAmt property.
*
* @param value
* allowed object is
* {@link ActiveCurrencyAndAmount }
*
*/
public OriginalInvoiceInformation1 setTtlInvcAmt(ActiveCurrencyAndAmount value) {
this.ttlInvcAmt = value;
return this;
}
/**
* Gets the value of the isseDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getIsseDt() {
return isseDt;
}
/**
* Sets the value of the isseDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public OriginalInvoiceInformation1 setIsseDt(XMLGregorianCalendar value) {
this.isseDt = 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 OriginalInvoiceInformation1 setPmtDueDt(XMLGregorianCalendar value) {
this.pmtDueDt = 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