
com.prowidesoftware.swift.model.mx.dic.Cardholder8 Maven / Gradle / Ivy
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;
/**
* Data related to the cardholder.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Cardholder8", propOrder = {
"id",
"nm",
"prsnlData"
})
public class Cardholder8 {
@XmlElement(name = "Id")
protected PersonIdentification7 id;
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "PrsnlData")
protected String prsnlData;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link PersonIdentification7 }
*
*/
public PersonIdentification7 getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link PersonIdentification7 }
*
*/
public Cardholder8 setId(PersonIdentification7 value) {
this.id = value;
return this;
}
/**
* 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 Cardholder8 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the prsnlData property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrsnlData() {
return prsnlData;
}
/**
* Sets the value of the prsnlData property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Cardholder8 setPrsnlData(String value) {
this.prsnlData = 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