com.prowidesoftware.swift.model.mx.dic.UpdatedAdditionalInformation3 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;
/**
* Additional information with update description and date.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UpdatedAdditionalInformation3", propOrder = {
"updDesc",
"updDt",
"addtlInf"
})
public class UpdatedAdditionalInformation3 {
@XmlElement(name = "UpdDesc")
protected String updDesc;
@XmlElement(name = "UpdDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar updDt;
@XmlElement(name = "AddtlInf", required = true)
protected String addtlInf;
/**
* Gets the value of the updDesc property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUpdDesc() {
return updDesc;
}
/**
* Sets the value of the updDesc property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public UpdatedAdditionalInformation3 setUpdDesc(String value) {
this.updDesc = value;
return this;
}
/**
* Gets the value of the updDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getUpdDt() {
return updDt;
}
/**
* Sets the value of the updDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public UpdatedAdditionalInformation3 setUpdDt(XMLGregorianCalendar value) {
this.updDt = 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 UpdatedAdditionalInformation3 setAddtlInf(String value) {
this.addtlInf = 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