
com.prowidesoftware.swift.model.mx.dic.CancelledStatusReason9Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CancelledStatusReason9Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="CancelledStatusReason9Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CANI"/>
* <enumeration value="CANS"/>
* <enumeration value="CSUB"/>
* <enumeration value="CXLR"/>
* <enumeration value="CANT"/>
* <enumeration value="CANZ"/>
* <enumeration value="CORP"/>
* <enumeration value="SCEX"/>
* <enumeration value="OTHR"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "CancelledStatusReason9Code")
@XmlEnum
public enum CancelledStatusReason9Code {
/**
* Transaction is cancelled by yourself.
*
*/
CANI,
/**
* Transaction is cancelled by the system.
*
*/
CANS,
/**
* Instruction has been cancelled by the agent due to an event deadline extension.
*
*/
CSUB,
/**
* Transaction is rejected by the executing party, the rejection is final therefore the order is cancelled in the system.
*
*/
CXLR,
/**
* Original transaction has been cancelled and replaced due to a corporate action.
*
*/
CANT,
/**
* Original transaction has been cancelled and replaced to allow a partial or split settlement.
*
*/
CANZ,
/**
* Transaction has been cancelled due to a corporate action.
*
*/
CORP,
/**
* Transaction has been cancelled; the security no longer exists or is no longer eligible on the market instructed. For corporate action related cancellation, CORP should be used.
*
*/
SCEX,
/**
* Other. See Narrative.
*
*/
OTHR;
public String value() {
return name();
}
public static CancelledStatusReason9Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy