com.prowidesoftware.swift.model.mx.dic.OptionFeatures7Code 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.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for OptionFeatures7Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="OptionFeatures7Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CAOS"/>
* <enumeration value="COND"/>
* <enumeration value="MAXC"/>
* <enumeration value="MAXS"/>
* <enumeration value="OPLF"/>
* <enumeration value="PROR"/>
* <enumeration value="VVPR"/>
* <enumeration value="NOSE"/>
* <enumeration value="PINS"/>
* <enumeration value="ASVO"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "OptionFeatures7Code")
@XmlEnum
public enum OptionFeatures7Code {
/**
* Option applicability is not subject to the account owner decision but depends on the terms defined by the issuer, for example in the case of equity linked notes or warrants.
*
*/
CAOS,
/**
* Feature whereby the holder can elect to place a condition on the acceptance of the option.
*
*/
COND,
/**
* Maximum cash option, may be subject to scaling, as such you may receive a combination of cash and securities outturn.
*
*/
MAXC,
/**
* Maximum stock option, may be subject to scaling, as such you may receive a combination of securities and cash outturn.
*
*/
MAXS,
/**
* Tender or exchange with the odd lot preference.
*
*/
OPLF,
/**
* Feature whereby the option can be subject to pro ration in case, for example, of over-subscription.
*
*/
PROR,
/**
* Reduced withholding tax rate applies to the option.
*
*/
VVPR,
/**
* Feature whereby the holder must elect directly to the issuer's agent (issuer only supported option).
*
*/
NOSE,
/**
* Indicates the previously sent instructions becomes invalid. This is only applicable after a market deadline extension.
*
*/
PINS,
/**
* Option is offered by the account servicer only.
*
*/
ASVO;
public String value() {
return name();
}
public static OptionFeatures7Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy