com.prowidesoftware.swift.model.mx.dic.TradeStatus7Code 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 TradeStatus7Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="TradeStatus7Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="INVA"/>
* <enumeration value="UMTC"/>
* <enumeration value="FMTC"/>
* <enumeration value="SMAT"/>
* <enumeration value="SUSP"/>
* <enumeration value="SMAP"/>
* <enumeration value="PFIX"/>
* <enumeration value="FUMT"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "TradeStatus7Code")
@XmlEnum
public enum TradeStatus7Code {
/**
* Trade is invalid.
*
*/
INVA,
/**
* Trade is unmatched.
*
*/
UMTC,
/**
* Trade is matched.
*
*/
FMTC,
/**
* Trade has been selected for settlement.
*
*/
SMAT,
/**
* Trade has been marked not ready for settlement.
*
*/
SUSP,
/**
* Trade has been selected for settlement and is pending.
*
*/
SMAP,
/**
* For NDF instructions, open confirmations are matched and the Fix confirmations are not matched.
*
*/
PFIX,
/**
* For NDF instructions, if a party has submitted both the open and fix confirmations and the counterparty is yet to submit the open and fix confirmation the instruction is updated to ‘Fix Unmatched’ Status
*
*/
FUMT;
public String value() {
return name();
}
public static TradeStatus7Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy