
com.prowidesoftware.swift.model.mx.dic.ReportParameters5 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;
/**
* Provides the parameters of the report.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReportParameters5", propOrder = {
"rptId",
"rptDtAndTm",
"frqcy",
"rptCcy",
"clctnDt"
})
public class ReportParameters5 {
@XmlElement(name = "RptId", required = true)
protected String rptId;
@XmlElement(name = "RptDtAndTm", required = true)
protected DateAndDateTimeChoice rptDtAndTm;
@XmlElement(name = "Frqcy", required = true)
@XmlSchemaType(name = "string")
protected EventFrequency6Code frqcy;
@XmlElement(name = "RptCcy", required = true)
protected String rptCcy;
@XmlElement(name = "ClctnDt")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar clctnDt;
/**
* Gets the value of the rptId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRptId() {
return rptId;
}
/**
* Sets the value of the rptId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ReportParameters5 setRptId(String value) {
this.rptId = value;
return this;
}
/**
* Gets the value of the rptDtAndTm property.
*
* @return
* possible object is
* {@link DateAndDateTimeChoice }
*
*/
public DateAndDateTimeChoice getRptDtAndTm() {
return rptDtAndTm;
}
/**
* Sets the value of the rptDtAndTm property.
*
* @param value
* allowed object is
* {@link DateAndDateTimeChoice }
*
*/
public ReportParameters5 setRptDtAndTm(DateAndDateTimeChoice value) {
this.rptDtAndTm = value;
return this;
}
/**
* Gets the value of the frqcy property.
*
* @return
* possible object is
* {@link EventFrequency6Code }
*
*/
public EventFrequency6Code getFrqcy() {
return frqcy;
}
/**
* Sets the value of the frqcy property.
*
* @param value
* allowed object is
* {@link EventFrequency6Code }
*
*/
public ReportParameters5 setFrqcy(EventFrequency6Code value) {
this.frqcy = value;
return this;
}
/**
* Gets the value of the rptCcy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRptCcy() {
return rptCcy;
}
/**
* Sets the value of the rptCcy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ReportParameters5 setRptCcy(String value) {
this.rptCcy = value;
return this;
}
/**
* Gets the value of the clctnDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getClctnDt() {
return clctnDt;
}
/**
* Sets the value of the clctnDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public ReportParameters5 setClctnDt(XMLGregorianCalendar value) {
this.clctnDt = 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