com.prowidesoftware.swift.model.mx.dic.AdditiononalInformation13 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;
/**
* Restrictions, remarks or notes that may be applied to an account or investment plan.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AdditiononalInformation13", propOrder = {
"lmttn",
"addtlInf",
"acctVldtn",
"tp",
"rgltr",
"sts",
"prd"
})
public class AdditiononalInformation13 {
@XmlElement(name = "Lmttn")
protected String lmttn;
@XmlElement(name = "AddtlInf")
protected String addtlInf;
@XmlElement(name = "AcctVldtn")
protected String acctVldtn;
@XmlElement(name = "Tp")
protected String tp;
@XmlElement(name = "Rgltr")
protected PartyIdentification125Choice rgltr;
@XmlElement(name = "Sts")
protected RestrictionStatus1Choice sts;
@XmlElement(name = "Prd")
protected DateTimePeriod2 prd;
/**
* Gets the value of the lmttn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLmttn() {
return lmttn;
}
/**
* Sets the value of the lmttn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AdditiononalInformation13 setLmttn(String value) {
this.lmttn = value;
return this;
}
/**
* Gets the value of the addtlInf property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddtlInf() {
return addtlInf;
}
/**
* Sets the value of the addtlInf property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AdditiononalInformation13 setAddtlInf(String value) {
this.addtlInf = value;
return this;
}
/**
* Gets the value of the acctVldtn property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAcctVldtn() {
return acctVldtn;
}
/**
* Sets the value of the acctVldtn property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AdditiononalInformation13 setAcctVldtn(String value) {
this.acctVldtn = value;
return this;
}
/**
* Gets the value of the tp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTp() {
return tp;
}
/**
* Sets the value of the tp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AdditiononalInformation13 setTp(String value) {
this.tp = value;
return this;
}
/**
* Gets the value of the rgltr property.
*
* @return
* possible object is
* {@link PartyIdentification125Choice }
*
*/
public PartyIdentification125Choice getRgltr() {
return rgltr;
}
/**
* Sets the value of the rgltr property.
*
* @param value
* allowed object is
* {@link PartyIdentification125Choice }
*
*/
public AdditiononalInformation13 setRgltr(PartyIdentification125Choice value) {
this.rgltr = value;
return this;
}
/**
* Gets the value of the sts property.
*
* @return
* possible object is
* {@link RestrictionStatus1Choice }
*
*/
public RestrictionStatus1Choice getSts() {
return sts;
}
/**
* Sets the value of the sts property.
*
* @param value
* allowed object is
* {@link RestrictionStatus1Choice }
*
*/
public AdditiononalInformation13 setSts(RestrictionStatus1Choice value) {
this.sts = value;
return this;
}
/**
* Gets the value of the prd property.
*
* @return
* possible object is
* {@link DateTimePeriod2 }
*
*/
public DateTimePeriod2 getPrd() {
return prd;
}
/**
* Sets the value of the prd property.
*
* @param value
* allowed object is
* {@link DateTimePeriod2 }
*
*/
public AdditiononalInformation13 setPrd(DateTimePeriod2 value) {
this.prd = 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