com.prowidesoftware.swift.model.mx.dic.SecurityDate6 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 jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
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;
/**
* Specifies security date details.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SecurityDate6", propOrder = {
"pstngDt",
"avlblDt",
"prpssDt",
"dvddRnkgDt",
"earlstPmtDt",
"pmtDt"
})
public class SecurityDate6 {
@XmlElement(name = "PstngDt", required = true)
protected DateAndDateTimeChoice pstngDt;
@XmlElement(name = "AvlblDt")
protected DateFormat19Choice avlblDt;
@XmlElement(name = "PrpssDt")
protected DateFormat19Choice prpssDt;
@XmlElement(name = "DvddRnkgDt")
protected DateFormat19Choice dvddRnkgDt;
@XmlElement(name = "EarlstPmtDt")
protected DateFormat19Choice earlstPmtDt;
@XmlElement(name = "PmtDt")
protected DateFormat19Choice pmtDt;
/**
* Gets the value of the pstngDt property.
*
* @return
* possible object is
* {@link DateAndDateTimeChoice }
*
*/
public DateAndDateTimeChoice getPstngDt() {
return pstngDt;
}
/**
* Sets the value of the pstngDt property.
*
* @param value
* allowed object is
* {@link DateAndDateTimeChoice }
*
*/
public SecurityDate6 setPstngDt(DateAndDateTimeChoice value) {
this.pstngDt = value;
return this;
}
/**
* Gets the value of the avlblDt property.
*
* @return
* possible object is
* {@link DateFormat19Choice }
*
*/
public DateFormat19Choice getAvlblDt() {
return avlblDt;
}
/**
* Sets the value of the avlblDt property.
*
* @param value
* allowed object is
* {@link DateFormat19Choice }
*
*/
public SecurityDate6 setAvlblDt(DateFormat19Choice value) {
this.avlblDt = value;
return this;
}
/**
* Gets the value of the prpssDt property.
*
* @return
* possible object is
* {@link DateFormat19Choice }
*
*/
public DateFormat19Choice getPrpssDt() {
return prpssDt;
}
/**
* Sets the value of the prpssDt property.
*
* @param value
* allowed object is
* {@link DateFormat19Choice }
*
*/
public SecurityDate6 setPrpssDt(DateFormat19Choice value) {
this.prpssDt = value;
return this;
}
/**
* Gets the value of the dvddRnkgDt property.
*
* @return
* possible object is
* {@link DateFormat19Choice }
*
*/
public DateFormat19Choice getDvddRnkgDt() {
return dvddRnkgDt;
}
/**
* Sets the value of the dvddRnkgDt property.
*
* @param value
* allowed object is
* {@link DateFormat19Choice }
*
*/
public SecurityDate6 setDvddRnkgDt(DateFormat19Choice value) {
this.dvddRnkgDt = value;
return this;
}
/**
* Gets the value of the earlstPmtDt property.
*
* @return
* possible object is
* {@link DateFormat19Choice }
*
*/
public DateFormat19Choice getEarlstPmtDt() {
return earlstPmtDt;
}
/**
* Sets the value of the earlstPmtDt property.
*
* @param value
* allowed object is
* {@link DateFormat19Choice }
*
*/
public SecurityDate6 setEarlstPmtDt(DateFormat19Choice value) {
this.earlstPmtDt = value;
return this;
}
/**
* Gets the value of the pmtDt property.
*
* @return
* possible object is
* {@link DateFormat19Choice }
*
*/
public DateFormat19Choice getPmtDt() {
return pmtDt;
}
/**
* Sets the value of the pmtDt property.
*
* @param value
* allowed object is
* {@link DateFormat19Choice }
*
*/
public SecurityDate6 setPmtDt(DateFormat19Choice value) {
this.pmtDt = 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