
com.prowidesoftware.swift.model.mx.dic.ReportItem1 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;
/**
* Account details of the report item.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ReportItem1", propOrder = {
"acctId",
"acctLvl",
"finInstrmId",
"itmDt"
})
public class ReportItem1 {
@XmlElement(name = "AcctId", required = true)
protected SecuritiesAccount19 acctId;
@XmlElement(name = "AcctLvl", required = true)
@XmlSchemaType(name = "string")
protected HoldingAccountLevel1Code acctLvl;
@XmlElement(name = "FinInstrmId")
protected SecurityIdentification19 finInstrmId;
@XmlElement(name = "ItmDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar itmDt;
/**
* Gets the value of the acctId property.
*
* @return
* possible object is
* {@link SecuritiesAccount19 }
*
*/
public SecuritiesAccount19 getAcctId() {
return acctId;
}
/**
* Sets the value of the acctId property.
*
* @param value
* allowed object is
* {@link SecuritiesAccount19 }
*
*/
public ReportItem1 setAcctId(SecuritiesAccount19 value) {
this.acctId = value;
return this;
}
/**
* Gets the value of the acctLvl property.
*
* @return
* possible object is
* {@link HoldingAccountLevel1Code }
*
*/
public HoldingAccountLevel1Code getAcctLvl() {
return acctLvl;
}
/**
* Sets the value of the acctLvl property.
*
* @param value
* allowed object is
* {@link HoldingAccountLevel1Code }
*
*/
public ReportItem1 setAcctLvl(HoldingAccountLevel1Code value) {
this.acctLvl = value;
return this;
}
/**
* Gets the value of the finInstrmId property.
*
* @return
* possible object is
* {@link SecurityIdentification19 }
*
*/
public SecurityIdentification19 getFinInstrmId() {
return finInstrmId;
}
/**
* Sets the value of the finInstrmId property.
*
* @param value
* allowed object is
* {@link SecurityIdentification19 }
*
*/
public ReportItem1 setFinInstrmId(SecurityIdentification19 value) {
this.finInstrmId = value;
return this;
}
/**
* Gets the value of the itmDt property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getItmDt() {
return itmDt;
}
/**
* Sets the value of the itmDt property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public ReportItem1 setItmDt(XMLGregorianCalendar value) {
this.itmDt = 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