All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.prowidesoftware.swift.model.mx.dic.StructuredRemittanceInformation8 Maven / Gradle / Ivy

The newest version!

package com.prowidesoftware.swift.model.mx.dic;

import java.util.ArrayList;
import java.util.List;
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;


/**
 * Information supplied to enable the matching/reconciliation of an entry with the items that the payment is intended to settle, such as commercial invoices in an accounts' receivable system, in a structured form.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StructuredRemittanceInformation8", propOrder = {
    "rfrdDocInf",
    "rfrdDocAmt",
    "cdtrRefInf",
    "invcr",
    "invcee",
    "addtlRmtInf"
})
public class StructuredRemittanceInformation8 {

    @XmlElement(name = "RfrdDocInf")
    protected List rfrdDocInf;
    @XmlElement(name = "RfrdDocAmt")
    protected RemittanceAmount1 rfrdDocAmt;
    @XmlElement(name = "CdtrRefInf")
    protected CreditorReferenceInformation2 cdtrRefInf;
    @XmlElement(name = "Invcr")
    protected PartyIdentification43 invcr;
    @XmlElement(name = "Invcee")
    protected PartyIdentification43 invcee;
    @XmlElement(name = "AddtlRmtInf")
    protected List addtlRmtInf;

    /**
     * Gets the value of the rfrdDocInf property.
     * 
     * 

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a {@code set} method for the rfrdDocInf property. * *

* For example, to add a new item, do as follows: *

     *    getRfrdDocInf().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ReferredDocumentInformation3 } * * * @return * The value of the rfrdDocInf property. */ public List getRfrdDocInf() { if (rfrdDocInf == null) { rfrdDocInf = new ArrayList<>(); } return this.rfrdDocInf; } /** * Gets the value of the rfrdDocAmt property. * * @return * possible object is * {@link RemittanceAmount1 } * */ public RemittanceAmount1 getRfrdDocAmt() { return rfrdDocAmt; } /** * Sets the value of the rfrdDocAmt property. * * @param value * allowed object is * {@link RemittanceAmount1 } * */ public StructuredRemittanceInformation8 setRfrdDocAmt(RemittanceAmount1 value) { this.rfrdDocAmt = value; return this; } /** * Gets the value of the cdtrRefInf property. * * @return * possible object is * {@link CreditorReferenceInformation2 } * */ public CreditorReferenceInformation2 getCdtrRefInf() { return cdtrRefInf; } /** * Sets the value of the cdtrRefInf property. * * @param value * allowed object is * {@link CreditorReferenceInformation2 } * */ public StructuredRemittanceInformation8 setCdtrRefInf(CreditorReferenceInformation2 value) { this.cdtrRefInf = value; return this; } /** * Gets the value of the invcr property. * * @return * possible object is * {@link PartyIdentification43 } * */ public PartyIdentification43 getInvcr() { return invcr; } /** * Sets the value of the invcr property. * * @param value * allowed object is * {@link PartyIdentification43 } * */ public StructuredRemittanceInformation8 setInvcr(PartyIdentification43 value) { this.invcr = value; return this; } /** * Gets the value of the invcee property. * * @return * possible object is * {@link PartyIdentification43 } * */ public PartyIdentification43 getInvcee() { return invcee; } /** * Sets the value of the invcee property. * * @param value * allowed object is * {@link PartyIdentification43 } * */ public StructuredRemittanceInformation8 setInvcee(PartyIdentification43 value) { this.invcee = value; return this; } /** * Gets the value of the addtlRmtInf property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a {@code set} method for the addtlRmtInf property. * *

* For example, to add a new item, do as follows: *

     *    getAddtlRmtInf().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * * @return * The value of the addtlRmtInf property. */ public List getAddtlRmtInf() { if (addtlRmtInf == null) { addtlRmtInf = new ArrayList<>(); } return this.addtlRmtInf; } @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); } /** * Adds a new item to the rfrdDocInf list. * @see #getRfrdDocInf() * */ public StructuredRemittanceInformation8 addRfrdDocInf(ReferredDocumentInformation3 rfrdDocInf) { getRfrdDocInf().add(rfrdDocInf); return this; } /** * Adds a new item to the addtlRmtInf list. * @see #getAddtlRmtInf() * */ public StructuredRemittanceInformation8 addAddtlRmtInf(String addtlRmtInf) { getAddtlRmtInf().add(addtlRmtInf); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy