com.prowidesoftware.swift.model.mx.dic.ReportParameters1 Maven / Gradle / Ivy
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;
/**
* Parameters related to the net position.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReportParameters1", propOrder = {
"netPosId",
"rptDtAndTm",
"updTp",
"frqcy",
"rptNb",
"actvtyInd"
})
public class ReportParameters1 {
@XmlElement(name = "NetPosId", required = true)
protected String netPosId;
@XmlElement(name = "RptDtAndTm", required = true)
protected DateAndDateTimeChoice rptDtAndTm;
@XmlElement(name = "UpdTp", required = true)
@XmlSchemaType(name = "string")
protected StatementUpdateType1Code updTp;
@XmlElement(name = "Frqcy", required = true)
@XmlSchemaType(name = "string")
protected EventFrequency6Code frqcy;
@XmlElement(name = "RptNb")
protected String rptNb;
@XmlElement(name = "ActvtyInd")
protected boolean actvtyInd;
/**
* Gets the value of the netPosId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNetPosId() {
return netPosId;
}
/**
* Sets the value of the netPosId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ReportParameters1 setNetPosId(String value) {
this.netPosId = 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 ReportParameters1 setRptDtAndTm(DateAndDateTimeChoice value) {
this.rptDtAndTm = value;
return this;
}
/**
* Gets the value of the updTp property.
*
* @return
* possible object is
* {@link StatementUpdateType1Code }
*
*/
public StatementUpdateType1Code getUpdTp() {
return updTp;
}
/**
* Sets the value of the updTp property.
*
* @param value
* allowed object is
* {@link StatementUpdateType1Code }
*
*/
public ReportParameters1 setUpdTp(StatementUpdateType1Code value) {
this.updTp = 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 ReportParameters1 setFrqcy(EventFrequency6Code value) {
this.frqcy = 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 ReportParameters1 setRptNb(String value) {
this.rptNb = value;
return this;
}
/**
* Gets the value of the actvtyInd property.
*
*/
public boolean isActvtyInd() {
return actvtyInd;
}
/**
* Sets the value of the actvtyInd property.
*
*/
public ReportParameters1 setActvtyInd(boolean value) {
this.actvtyInd = 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