com.prowidesoftware.swift.model.mx.dic.Creditor4 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;
/**
* Information about the creditor.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Creditor4", propOrder = {
"cdtr",
"regnId"
})
public class Creditor4 {
@XmlElement(name = "Cdtr", required = true)
protected PartyIdentification178Choice cdtr;
@XmlElement(name = "RegnId")
protected String regnId;
/**
* Gets the value of the cdtr property.
*
* @return
* possible object is
* {@link PartyIdentification178Choice }
*
*/
public PartyIdentification178Choice getCdtr() {
return cdtr;
}
/**
* Sets the value of the cdtr property.
*
* @param value
* allowed object is
* {@link PartyIdentification178Choice }
*
*/
public Creditor4 setCdtr(PartyIdentification178Choice value) {
this.cdtr = value;
return this;
}
/**
* Gets the value of the regnId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRegnId() {
return regnId;
}
/**
* Sets the value of the regnId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Creditor4 setRegnId(String value) {
this.regnId = 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