com.prowidesoftware.swift.model.mx.dic.SecuritiesOption9 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.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 = "SecuritiesOption9", propOrder = {
"maxExrcblQty",
"minExrcblQty",
"minExrcblMltplQty",
"newBrdLotQty",
"newDnmtnQty",
"frntEndOddLotQty",
"bckEndOddLotQty"
})
public class SecuritiesOption9 {
@XmlElement(name = "MaxExrcblQty")
protected FinancialInstrumentQuantity15Choice maxExrcblQty;
@XmlElement(name = "MinExrcblQty")
protected FinancialInstrumentQuantity15Choice minExrcblQty;
@XmlElement(name = "MinExrcblMltplQty")
protected FinancialInstrumentQuantity15Choice minExrcblMltplQty;
@XmlElement(name = "NewBrdLotQty")
protected FinancialInstrumentQuantity15Choice newBrdLotQty;
@XmlElement(name = "NewDnmtnQty")
protected FinancialInstrumentQuantity15Choice newDnmtnQty;
@XmlElement(name = "FrntEndOddLotQty")
protected FinancialInstrumentQuantity14Choice frntEndOddLotQty;
@XmlElement(name = "BckEndOddLotQty")
protected FinancialInstrumentQuantity14Choice bckEndOddLotQty;
/**
* Gets the value of the maxExrcblQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public FinancialInstrumentQuantity15Choice getMaxExrcblQty() {
return maxExrcblQty;
}
/**
* Sets the value of the maxExrcblQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public SecuritiesOption9 setMaxExrcblQty(FinancialInstrumentQuantity15Choice value) {
this.maxExrcblQty = value;
return this;
}
/**
* Gets the value of the minExrcblQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public FinancialInstrumentQuantity15Choice getMinExrcblQty() {
return minExrcblQty;
}
/**
* Sets the value of the minExrcblQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public SecuritiesOption9 setMinExrcblQty(FinancialInstrumentQuantity15Choice value) {
this.minExrcblQty = value;
return this;
}
/**
* Gets the value of the minExrcblMltplQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public FinancialInstrumentQuantity15Choice getMinExrcblMltplQty() {
return minExrcblMltplQty;
}
/**
* Sets the value of the minExrcblMltplQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public SecuritiesOption9 setMinExrcblMltplQty(FinancialInstrumentQuantity15Choice value) {
this.minExrcblMltplQty = value;
return this;
}
/**
* Gets the value of the newBrdLotQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public FinancialInstrumentQuantity15Choice getNewBrdLotQty() {
return newBrdLotQty;
}
/**
* Sets the value of the newBrdLotQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public SecuritiesOption9 setNewBrdLotQty(FinancialInstrumentQuantity15Choice value) {
this.newBrdLotQty = value;
return this;
}
/**
* Gets the value of the newDnmtnQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public FinancialInstrumentQuantity15Choice getNewDnmtnQty() {
return newDnmtnQty;
}
/**
* Sets the value of the newDnmtnQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity15Choice }
*
*/
public SecuritiesOption9 setNewDnmtnQty(FinancialInstrumentQuantity15Choice value) {
this.newDnmtnQty = value;
return this;
}
/**
* Gets the value of the frntEndOddLotQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity14Choice }
*
*/
public FinancialInstrumentQuantity14Choice getFrntEndOddLotQty() {
return frntEndOddLotQty;
}
/**
* Sets the value of the frntEndOddLotQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity14Choice }
*
*/
public SecuritiesOption9 setFrntEndOddLotQty(FinancialInstrumentQuantity14Choice value) {
this.frntEndOddLotQty = value;
return this;
}
/**
* Gets the value of the bckEndOddLotQty property.
*
* @return
* possible object is
* {@link FinancialInstrumentQuantity14Choice }
*
*/
public FinancialInstrumentQuantity14Choice getBckEndOddLotQty() {
return bckEndOddLotQty;
}
/**
* Sets the value of the bckEndOddLotQty property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentQuantity14Choice }
*
*/
public SecuritiesOption9 setBckEndOddLotQty(FinancialInstrumentQuantity14Choice 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