com.prowidesoftware.swift.model.mx.dic.GroupHeader81 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 further details on the message.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GroupHeader81", propOrder = {
"msgId",
"creDtTm",
"msgRcpt",
"msgPgntn",
"orgnlBizQry",
"addtlInf"
})
public class GroupHeader81 {
@XmlElement(name = "MsgId", required = true)
protected String msgId;
@XmlElement(name = "CreDtTm", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creDtTm;
@XmlElement(name = "MsgRcpt")
protected PartyIdentification135 msgRcpt;
@XmlElement(name = "MsgPgntn")
protected Pagination1 msgPgntn;
@XmlElement(name = "OrgnlBizQry")
protected OriginalBusinessQuery1 orgnlBizQry;
@XmlElement(name = "AddtlInf")
protected String addtlInf;
/**
* 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 GroupHeader81 setMsgId(String value) {
this.msgId = value;
return this;
}
/**
* Gets the value of the creDtTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCreDtTm() {
return creDtTm;
}
/**
* Sets the value of the creDtTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public GroupHeader81 setCreDtTm(XMLGregorianCalendar value) {
this.creDtTm = value;
return this;
}
/**
* Gets the value of the msgRcpt property.
*
* @return
* possible object is
* {@link PartyIdentification135 }
*
*/
public PartyIdentification135 getMsgRcpt() {
return msgRcpt;
}
/**
* Sets the value of the msgRcpt property.
*
* @param value
* allowed object is
* {@link PartyIdentification135 }
*
*/
public GroupHeader81 setMsgRcpt(PartyIdentification135 value) {
this.msgRcpt = 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 GroupHeader81 setMsgPgntn(Pagination1 value) {
this.msgPgntn = value;
return this;
}
/**
* Gets the value of the orgnlBizQry property.
*
* @return
* possible object is
* {@link OriginalBusinessQuery1 }
*
*/
public OriginalBusinessQuery1 getOrgnlBizQry() {
return orgnlBizQry;
}
/**
* Sets the value of the orgnlBizQry property.
*
* @param value
* allowed object is
* {@link OriginalBusinessQuery1 }
*
*/
public GroupHeader81 setOrgnlBizQry(OriginalBusinessQuery1 value) {
this.orgnlBizQry = value;
return this;
}
/**
* Gets the value of the addtlInf property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddtlInf() {
return addtlInf;
}
/**
* Sets the value of the addtlInf property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public GroupHeader81 setAddtlInf(String value) {
this.addtlInf = 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