com.prowidesoftware.swift.model.mx.dic.Statement5 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.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;
/**
* General characteristics related to a statement which reports information for a defined period.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Statement5", propOrder = {
"ref",
"stmtPrd",
"creDtTm",
"frqcy",
"updTp",
"actvtyInd",
"rptNb"
})
public class Statement5 {
@XmlElement(name = "Ref", required = true)
protected String ref;
@XmlElement(name = "StmtPrd", required = true)
protected DatePeriodDetails stmtPrd;
@XmlElement(name = "CreDtTm")
protected DateAndDateTimeChoice creDtTm;
@XmlElement(name = "Frqcy")
@XmlSchemaType(name = "string")
protected Frequency1Code frqcy;
@XmlElement(name = "UpdTp", required = true)
@XmlSchemaType(name = "string")
protected StatementUpdateTypeCode updTp;
@XmlElement(name = "ActvtyInd")
protected boolean actvtyInd;
@XmlElement(name = "RptNb")
protected String rptNb;
/**
* Gets the value of the ref property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRef() {
return ref;
}
/**
* Sets the value of the ref property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Statement5 setRef(String value) {
this.ref = value;
return this;
}
/**
* Gets the value of the stmtPrd property.
*
* @return
* possible object is
* {@link DatePeriodDetails }
*
*/
public DatePeriodDetails getStmtPrd() {
return stmtPrd;
}
/**
* Sets the value of the stmtPrd property.
*
* @param value
* allowed object is
* {@link DatePeriodDetails }
*
*/
public Statement5 setStmtPrd(DatePeriodDetails value) {
this.stmtPrd = value;
return this;
}
/**
* Gets the value of the creDtTm property.
*
* @return
* possible object is
* {@link DateAndDateTimeChoice }
*
*/
public DateAndDateTimeChoice getCreDtTm() {
return creDtTm;
}
/**
* Sets the value of the creDtTm property.
*
* @param value
* allowed object is
* {@link DateAndDateTimeChoice }
*
*/
public Statement5 setCreDtTm(DateAndDateTimeChoice value) {
this.creDtTm = value;
return this;
}
/**
* Gets the value of the frqcy property.
*
* @return
* possible object is
* {@link Frequency1Code }
*
*/
public Frequency1Code getFrqcy() {
return frqcy;
}
/**
* Sets the value of the frqcy property.
*
* @param value
* allowed object is
* {@link Frequency1Code }
*
*/
public Statement5 setFrqcy(Frequency1Code value) {
this.frqcy = value;
return this;
}
/**
* Gets the value of the updTp property.
*
* @return
* possible object is
* {@link StatementUpdateTypeCode }
*
*/
public StatementUpdateTypeCode getUpdTp() {
return updTp;
}
/**
* Sets the value of the updTp property.
*
* @param value
* allowed object is
* {@link StatementUpdateTypeCode }
*
*/
public Statement5 setUpdTp(StatementUpdateTypeCode value) {
this.updTp = value;
return this;
}
/**
* Gets the value of the actvtyInd property.
*
*/
public boolean isActvtyInd() {
return actvtyInd;
}
/**
* Sets the value of the actvtyInd property.
*
*/
public Statement5 setActvtyInd(boolean value) {
this.actvtyInd = value;
return this;
}
/**
* Gets the value of the rptNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRptNb() {
return rptNb;
}
/**
* Sets the value of the rptNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Statement5 setRptNb(String value) {
this.rptNb = 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