com.prowidesoftware.swift.model.mx.dic.PaymentInstrument14 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.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;
/**
* Payment parties for the transfer of cash from the debtor to the creditor.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PaymentInstrument14", propOrder = {
"ref",
"cdtTrfDtls"
})
public class PaymentInstrument14 {
@XmlElement(name = "Ref")
protected String ref;
@XmlElement(name = "CdtTrfDtls")
protected CreditTransfer9 cdtTrfDtls;
/**
* Gets the value of the ref property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRef() {
return ref;
}
/**
* Sets the value of the ref property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PaymentInstrument14 setRef(String value) {
this.ref = value;
return this;
}
/**
* Gets the value of the cdtTrfDtls property.
*
* @return
* possible object is
* {@link CreditTransfer9 }
*
*/
public CreditTransfer9 getCdtTrfDtls() {
return cdtTrfDtls;
}
/**
* Sets the value of the cdtTrfDtls property.
*
* @param value
* allowed object is
* {@link CreditTransfer9 }
*
*/
public PaymentInstrument14 setCdtTrfDtls(CreditTransfer9 value) {
this.cdtTrfDtls = 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