com.prowidesoftware.swift.model.mx.dic.Participation2 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 java.math.BigDecimal;
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;
/**
* Specifies the level of participation to a shareholders meeting.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Participation2", propOrder = {
"ttlNbOfVtngRghts",
"pctgOfVtngRghts",
"ttlNbOfSctiesOutsdng",
"clctnDt"
})
public class Participation2 {
@XmlElement(name = "TtlNbOfVtngRghts")
protected BigDecimal ttlNbOfVtngRghts;
@XmlElement(name = "PctgOfVtngRghts")
protected BigDecimal pctgOfVtngRghts;
@XmlElement(name = "TtlNbOfSctiesOutsdng")
protected CurrencyAndAmount ttlNbOfSctiesOutsdng;
@XmlElement(name = "ClctnDt")
@XmlSchemaType(name = "date")
protected XMLGregorianCalendar clctnDt;
/**
* Gets the value of the ttlNbOfVtngRghts property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getTtlNbOfVtngRghts() {
return ttlNbOfVtngRghts;
}
/**
* Sets the value of the ttlNbOfVtngRghts property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public Participation2 setTtlNbOfVtngRghts(BigDecimal value) {
this.ttlNbOfVtngRghts = value;
return this;
}
/**
* Gets the value of the pctgOfVtngRghts property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getPctgOfVtngRghts() {
return pctgOfVtngRghts;
}
/**
* Sets the value of the pctgOfVtngRghts property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public Participation2 setPctgOfVtngRghts(BigDecimal value) {
this.pctgOfVtngRghts = value;
return this;
}
/**
* Gets the value of the ttlNbOfSctiesOutsdng property.
*
* @return
* possible object is
* {@link CurrencyAndAmount }
*
*/
public CurrencyAndAmount getTtlNbOfSctiesOutsdng() {
return ttlNbOfSctiesOutsdng;
}
/**
* Sets the value of the ttlNbOfSctiesOutsdng property.
*
* @param value
* allowed object is
* {@link CurrencyAndAmount }
*
*/
public Participation2 setTtlNbOfSctiesOutsdng(CurrencyAndAmount value) {
this.ttlNbOfSctiesOutsdng = 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 Participation2 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