com.prowidesoftware.swift.model.mx.dic.NetReportData2 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.time.LocalDate;
import java.time.OffsetDateTime;
import java.time.OffsetTime;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
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 jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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 the meta data associated with a net report.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NetReportData2", propOrder = {
"msgId",
"creDtTm",
"netgCutOffTm",
"rptDt",
"valDt",
"rptTp",
"netRptSvcr",
"netSvcTp",
"msgPgntn"
})
public class NetReportData2 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
@XmlElement(name = "CreDtTm", required = true, type = String.class)
@XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected OffsetDateTime creDtTm;
@XmlElement(name = "NetgCutOffTm", required = true, type = String.class)
@XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected OffsetTime netgCutOffTm;
@XmlElement(name = "RptDt", required = true, type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate rptDt;
@XmlElement(name = "ValDt", required = true, type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate valDt;
@XmlElement(name = "RptTp")
protected String rptTp;
@XmlElement(name = "NetRptSvcr")
protected PartyIdentification242Choice netRptSvcr;
@XmlElement(name = "NetSvcTp")
protected String netSvcTp;
@XmlElement(name = "MsgPgntn")
protected Pagination1 msgPgntn;
/**
* Gets the value of the msgId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMsgId() {
return msgId;
}
/**
* Sets the value of the msgId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public NetReportData2 setMsgId(String value) {
this.msgId = value;
return this;
}
/**
* Gets the value of the creDtTm property.
*
* @return
* possible object is
* {@link String }
*
*/
public OffsetDateTime getCreDtTm() {
return creDtTm;
}
/**
* Sets the value of the creDtTm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public NetReportData2 setCreDtTm(OffsetDateTime value) {
this.creDtTm = value;
return this;
}
/**
* Gets the value of the netgCutOffTm property.
*
* @return
* possible object is
* {@link String }
*
*/
public OffsetTime getNetgCutOffTm() {
return netgCutOffTm;
}
/**
* Sets the value of the netgCutOffTm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public NetReportData2 setNetgCutOffTm(OffsetTime value) {
this.netgCutOffTm = value;
return this;
}
/**
* Gets the value of the rptDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getRptDt() {
return rptDt;
}
/**
* Sets the value of the rptDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public NetReportData2 setRptDt(LocalDate value) {
this.rptDt = value;
return this;
}
/**
* Gets the value of the valDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getValDt() {
return valDt;
}
/**
* Sets the value of the valDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public NetReportData2 setValDt(LocalDate value) {
this.valDt = value;
return this;
}
/**
* Gets the value of the rptTp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRptTp() {
return rptTp;
}
/**
* Sets the value of the rptTp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public NetReportData2 setRptTp(String value) {
this.rptTp = value;
return this;
}
/**
* Gets the value of the netRptSvcr property.
*
* @return
* possible object is
* {@link PartyIdentification242Choice }
*
*/
public PartyIdentification242Choice getNetRptSvcr() {
return netRptSvcr;
}
/**
* Sets the value of the netRptSvcr property.
*
* @param value
* allowed object is
* {@link PartyIdentification242Choice }
*
*/
public NetReportData2 setNetRptSvcr(PartyIdentification242Choice value) {
this.netRptSvcr = value;
return this;
}
/**
* Gets the value of the netSvcTp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNetSvcTp() {
return netSvcTp;
}
/**
* Sets the value of the netSvcTp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public NetReportData2 setNetSvcTp(String value) {
this.netSvcTp = value;
return this;
}
/**
* Gets the value of the msgPgntn property.
*
* @return
* possible object is
* {@link Pagination1 }
*
*/
public Pagination1 getMsgPgntn() {
return msgPgntn;
}
/**
* Sets the value of the msgPgntn property.
*
* @param value
* allowed object is
* {@link Pagination1 }
*
*/
public NetReportData2 setMsgPgntn(Pagination1 value) {
this.msgPgntn = 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