com.prowidesoftware.swift.model.mx.dic.OrderStatus7Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for OrderStatus7Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "OrderStatus7Code")
@XmlEnum
public enum OrderStatus7Code {
/**
* Order is accepted and is ready for execution (execution is the moment when pricing is applied).
*
*/
PACK,
/**
* Order has been sent to the next party, eg, the next intermediary.
*
*/
STNP,
/**
* Order has been received, ie, technical validation of the message is ok, and the message is now at the receiving side.
*
*/
RECE;
public String value() {
return name();
}
public static OrderStatus7Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy