com.prowidesoftware.swift.model.mx.dic.Organisation21 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;
/**
* Organised structure that is set up for a particular purpose, for example, a business, government body, department, charity, or financial institution.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Organisation21", propOrder = {
"nm",
"id",
"purp",
"taxtnCtry",
"regnCtry",
"regnDt",
"taxIdNb",
"ntlRegnNb",
"corpInvstrAdr"
})
public class Organisation21 {
@XmlElement(name = "Nm", required = true)
protected String nm;
@XmlElement(name = "Id")
protected PartyIdentification72Choice id;
@XmlElement(name = "Purp")
protected String purp;
@XmlElement(name = "TaxtnCtry")
protected String taxtnCtry;
@XmlElement(name = "RegnCtry")
protected String regnCtry;
@XmlElement(name = "RegnDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar regnDt;
@XmlElement(name = "TaxIdNb")
protected String taxIdNb;
@XmlElement(name = "NtlRegnNb")
protected String ntlRegnNb;
@XmlElement(name = "CorpInvstrAdr", required = true)
protected PostalAddress1 corpInvstrAdr;
/**
* 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 Organisation21 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link PartyIdentification72Choice }
*
*/
public PartyIdentification72Choice getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link PartyIdentification72Choice }
*
*/
public Organisation21 setId(PartyIdentification72Choice value) {
this.id = value;
return this;
}
/**
* Gets the value of the purp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPurp() {
return purp;
}
/**
* Sets the value of the purp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Organisation21 setPurp(String value) {
this.purp = value;
return this;
}
/**
* Gets the value of the taxtnCtry property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTaxtnCtry() {
return taxtnCtry;
}
/**
* Sets the value of the taxtnCtry property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Organisation21 setTaxtnCtry(String value) {
this.taxtnCtry = value;
return this;
}
/**
* Gets the value of the regnCtry property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRegnCtry() {
return regnCtry;
}
/**
* Sets the value of the regnCtry property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Organisation21 setRegnCtry(String value) {
this.regnCtry = value;
return this;
}
/**
* Gets the value of the regnDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getRegnDt() {
return regnDt;
}
/**
* Sets the value of the regnDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public Organisation21 setRegnDt(XMLGregorianCalendar value) {
this.regnDt = value;
return this;
}
/**
* Gets the value of the taxIdNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTaxIdNb() {
return taxIdNb;
}
/**
* Sets the value of the taxIdNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Organisation21 setTaxIdNb(String value) {
this.taxIdNb = value;
return this;
}
/**
* Gets the value of the ntlRegnNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNtlRegnNb() {
return ntlRegnNb;
}
/**
* Sets the value of the ntlRegnNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Organisation21 setNtlRegnNb(String value) {
this.ntlRegnNb = value;
return this;
}
/**
* Gets the value of the corpInvstrAdr property.
*
* @return
* possible object is
* {@link PostalAddress1 }
*
*/
public PostalAddress1 getCorpInvstrAdr() {
return corpInvstrAdr;
}
/**
* Sets the value of the corpInvstrAdr property.
*
* @param value
* allowed object is
* {@link PostalAddress1 }
*
*/
public Organisation21 setCorpInvstrAdr(PostalAddress1 value) {
this.corpInvstrAdr = 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