com.prowidesoftware.swift.model.mx.dic.IndividualPerson15 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;
/**
* Human entity, as distinguished from a corporate entity (which is sometimes referred to as an 'artificial person').
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "IndividualPerson15", propOrder = {
"nm",
"birthDt",
"ctryAndResdtlSts",
"othrId",
"bnfcryCertfctnCmpltn"
})
public class IndividualPerson15 {
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "BirthDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar birthDt;
@XmlElement(name = "CtryAndResdtlSts")
protected CountryAndResidentialStatusType1 ctryAndResdtlSts;
@XmlElement(name = "OthrId")
protected GenericIdentification12 othrId;
@XmlElement(name = "BnfcryCertfctnCmpltn")
@XmlSchemaType(name = "string")
protected BeneficiaryCertificationCompletion1Code bnfcryCertfctnCmpltn;
/**
* Gets the value of the nm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNm() {
return nm;
}
/**
* Sets the value of the nm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public IndividualPerson15 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the birthDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getBirthDt() {
return birthDt;
}
/**
* Sets the value of the birthDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public IndividualPerson15 setBirthDt(XMLGregorianCalendar value) {
this.birthDt = value;
return this;
}
/**
* Gets the value of the ctryAndResdtlSts property.
*
* @return
* possible object is
* {@link CountryAndResidentialStatusType1 }
*
*/
public CountryAndResidentialStatusType1 getCtryAndResdtlSts() {
return ctryAndResdtlSts;
}
/**
* Sets the value of the ctryAndResdtlSts property.
*
* @param value
* allowed object is
* {@link CountryAndResidentialStatusType1 }
*
*/
public IndividualPerson15 setCtryAndResdtlSts(CountryAndResidentialStatusType1 value) {
this.ctryAndResdtlSts = value;
return this;
}
/**
* Gets the value of the othrId property.
*
* @return
* possible object is
* {@link GenericIdentification12 }
*
*/
public GenericIdentification12 getOthrId() {
return othrId;
}
/**
* Sets the value of the othrId property.
*
* @param value
* allowed object is
* {@link GenericIdentification12 }
*
*/
public IndividualPerson15 setOthrId(GenericIdentification12 value) {
this.othrId = value;
return this;
}
/**
* Gets the value of the bnfcryCertfctnCmpltn property.
*
* @return
* possible object is
* {@link BeneficiaryCertificationCompletion1Code }
*
*/
public BeneficiaryCertificationCompletion1Code getBnfcryCertfctnCmpltn() {
return bnfcryCertfctnCmpltn;
}
/**
* Sets the value of the bnfcryCertfctnCmpltn property.
*
* @param value
* allowed object is
* {@link BeneficiaryCertificationCompletion1Code }
*
*/
public IndividualPerson15 setBnfcryCertfctnCmpltn(BeneficiaryCertificationCompletion1Code value) {
this.bnfcryCertfctnCmpltn = 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