com.prowidesoftware.swift.model.mx.dic.PartyIdentification198Choice 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.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;
/**
* Identification of a party.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PartyIdentification198Choice", propOrder = {
"ntlRegnNb",
"lei",
"anyBIC",
"clntId",
"prtryId"
})
public class PartyIdentification198Choice {
@XmlElement(name = "NtlRegnNb")
protected String ntlRegnNb;
@XmlElement(name = "LEI")
protected String lei;
@XmlElement(name = "AnyBIC")
protected String anyBIC;
@XmlElement(name = "ClntId")
protected String clntId;
@XmlElement(name = "PrtryId")
protected GenericIdentification36 prtryId;
/**
* 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 PartyIdentification198Choice setNtlRegnNb(String value) {
this.ntlRegnNb = value;
return this;
}
/**
* Gets the value of the lei property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLEI() {
return lei;
}
/**
* Sets the value of the lei property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PartyIdentification198Choice setLEI(String value) {
this.lei = value;
return this;
}
/**
* Gets the value of the anyBIC property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAnyBIC() {
return anyBIC;
}
/**
* Sets the value of the anyBIC property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PartyIdentification198Choice setAnyBIC(String value) {
this.anyBIC = value;
return this;
}
/**
* Gets the value of the clntId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClntId() {
return clntId;
}
/**
* Sets the value of the clntId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PartyIdentification198Choice setClntId(String value) {
this.clntId = value;
return this;
}
/**
* Gets the value of the prtryId property.
*
* @return
* possible object is
* {@link GenericIdentification36 }
*
*/
public GenericIdentification36 getPrtryId() {
return prtryId;
}
/**
* Sets the value of the prtryId property.
*
* @param value
* allowed object is
* {@link GenericIdentification36 }
*
*/
public PartyIdentification198Choice setPrtryId(GenericIdentification36 value) {
this.prtryId = 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