com.prowidesoftware.swift.model.mx.dic.SecuritiesOption15 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
The newest version!
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.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;
/**
* Specifies the security option of a corporate event.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SecuritiesOption15", propOrder = {
"maxExrcblQty",
"minExrcblQty",
"minExrcblMltplQty",
"newBrdLotQty",
"newDnmtnQty",
"frntEndOddLotQty",
"bckEndOddLotQty"
})
public class SecuritiesOption15 {
@XmlElement(name = "MaxExrcblQty")
protected FinancialInstrumentQuantity1Choice maxExrcblQty;
@XmlElement(name = "MinExrcblQty")
protected FinancialInstrumentQuantity1Choice minExrcblQty;
@XmlElement(name = "MinExrcblMltplQty")
protected FinancialInstrumentQuantity1Choice minExrcblMltplQty;
@XmlElement(name = "NewBrdLotQty")
protected FinancialInstrumentQuantity1Choice newBrdLotQty;
@XmlElement(name = "NewDnmtnQty")
protected FinancialInstrumentQuantity1Choice newDnmtnQty;
@XmlElement(name = "FrntEndOddLotQty")
protected FinancialInstrumentQuantity16Choice frntEndOddLotQty;
@XmlElement(name = "BckEndOddLotQty")
protected FinancialInstrumentQuantity16Choice bckEndOddLotQty;
/**
* Gets the value of the maxExrcblQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public FinancialInstrumentQuantity1Choice getMaxExrcblQty() {
return maxExrcblQty;
}
/**
* Sets the value of the maxExrcblQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public SecuritiesOption15 setMaxExrcblQty(FinancialInstrumentQuantity1Choice value) {
this.maxExrcblQty = value;
return this;
}
/**
* Gets the value of the minExrcblQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public FinancialInstrumentQuantity1Choice getMinExrcblQty() {
return minExrcblQty;
}
/**
* Sets the value of the minExrcblQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public SecuritiesOption15 setMinExrcblQty(FinancialInstrumentQuantity1Choice value) {
this.minExrcblQty = value;
return this;
}
/**
* Gets the value of the minExrcblMltplQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public FinancialInstrumentQuantity1Choice getMinExrcblMltplQty() {
return minExrcblMltplQty;
}
/**
* Sets the value of the minExrcblMltplQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public SecuritiesOption15 setMinExrcblMltplQty(FinancialInstrumentQuantity1Choice value) {
this.minExrcblMltplQty = value;
return this;
}
/**
* Gets the value of the newBrdLotQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public FinancialInstrumentQuantity1Choice getNewBrdLotQty() {
return newBrdLotQty;
}
/**
* Sets the value of the newBrdLotQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public SecuritiesOption15 setNewBrdLotQty(FinancialInstrumentQuantity1Choice value) {
this.newBrdLotQty = value;
return this;
}
/**
* Gets the value of the newDnmtnQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public FinancialInstrumentQuantity1Choice getNewDnmtnQty() {
return newDnmtnQty;
}
/**
* Sets the value of the newDnmtnQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity1Choice }
*
*/
public SecuritiesOption15 setNewDnmtnQty(FinancialInstrumentQuantity1Choice value) {
this.newDnmtnQty = value;
return this;
}
/**
* Gets the value of the frntEndOddLotQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity16Choice }
*
*/
public FinancialInstrumentQuantity16Choice getFrntEndOddLotQty() {
return frntEndOddLotQty;
}
/**
* Sets the value of the frntEndOddLotQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity16Choice }
*
*/
public SecuritiesOption15 setFrntEndOddLotQty(FinancialInstrumentQuantity16Choice value) {
this.frntEndOddLotQty = value;
return this;
}
/**
* Gets the value of the bckEndOddLotQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity16Choice }
*
*/
public FinancialInstrumentQuantity16Choice getBckEndOddLotQty() {
return bckEndOddLotQty;
}
/**
* Sets the value of the bckEndOddLotQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity16Choice }
*
*/
public SecuritiesOption15 setBckEndOddLotQty(FinancialInstrumentQuantity16Choice value) {
this.bckEndOddLotQty = 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