com.prowidesoftware.swift.model.mx.dic.LoyaltyAccount3 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
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import java.math.BigDecimal;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
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;
/**
* Loyalty Account description.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LoyaltyAccount3", propOrder = {
"lltyId",
"ntryMd",
"idTp",
"brnd",
"prvdr",
"ownrNm",
"unit",
"ccy",
"bal"
})
public class LoyaltyAccount3 {
@XmlElement(name = "LltyId", required = true)
protected String lltyId;
@XmlElement(name = "NtryMd")
@XmlSchemaType(name = "string")
protected CardDataReading8Code ntryMd;
@XmlElement(name = "IdTp")
@XmlSchemaType(name = "string")
protected CardIdentificationType1Code idTp;
@XmlElement(name = "Brnd")
protected String brnd;
@XmlElement(name = "Prvdr")
protected String prvdr;
@XmlElement(name = "OwnrNm")
protected String ownrNm;
@XmlElement(name = "Unit")
@XmlSchemaType(name = "string")
protected AmountUnit1Code unit;
@XmlElement(name = "Ccy")
protected String ccy;
@XmlElement(name = "Bal")
protected BigDecimal bal;
/**
* Gets the value of the lltyId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLltyId() {
return lltyId;
}
/**
* Sets the value of the lltyId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public LoyaltyAccount3 setLltyId(String value) {
this.lltyId = value;
return this;
}
/**
* Gets the value of the ntryMd property.
*
* @return
* possible object is
* {@link CardDataReading8Code }
*
*/
public CardDataReading8Code getNtryMd() {
return ntryMd;
}
/**
* Sets the value of the ntryMd property.
*
* @param value
* allowed object is
* {@link CardDataReading8Code }
*
*/
public LoyaltyAccount3 setNtryMd(CardDataReading8Code value) {
this.ntryMd = value;
return this;
}
/**
* Gets the value of the idTp property.
*
* @return
* possible object is
* {@link CardIdentificationType1Code }
*
*/
public CardIdentificationType1Code getIdTp() {
return idTp;
}
/**
* Sets the value of the idTp property.
*
* @param value
* allowed object is
* {@link CardIdentificationType1Code }
*
*/
public LoyaltyAccount3 setIdTp(CardIdentificationType1Code value) {
this.idTp = value;
return this;
}
/**
* Gets the value of the brnd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBrnd() {
return brnd;
}
/**
* Sets the value of the brnd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public LoyaltyAccount3 setBrnd(String value) {
this.brnd = value;
return this;
}
/**
* Gets the value of the prvdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPrvdr() {
return prvdr;
}
/**
* Sets the value of the prvdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public LoyaltyAccount3 setPrvdr(String value) {
this.prvdr = value;
return this;
}
/**
* Gets the value of the ownrNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOwnrNm() {
return ownrNm;
}
/**
* Sets the value of the ownrNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public LoyaltyAccount3 setOwnrNm(String value) {
this.ownrNm = value;
return this;
}
/**
* Gets the value of the unit property.
*
* @return
* possible object is
* {@link AmountUnit1Code }
*
*/
public AmountUnit1Code getUnit() {
return unit;
}
/**
* Sets the value of the unit property.
*
* @param value
* allowed object is
* {@link AmountUnit1Code }
*
*/
public LoyaltyAccount3 setUnit(AmountUnit1Code value) {
this.unit = value;
return this;
}
/**
* Gets the value of the ccy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCcy() {
return ccy;
}
/**
* Sets the value of the ccy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public LoyaltyAccount3 setCcy(String value) {
this.ccy = value;
return this;
}
/**
* Gets the value of the bal property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getBal() {
return bal;
}
/**
* Sets the value of the bal property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public LoyaltyAccount3 setBal(BigDecimal value) {
this.bal = 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