All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.prowidesoftware.swift.model.mx.dic.OrderStatus3Code 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 OrderStatus3Code. * *

The following schema fragment specifies the expected content contained within this class. *

{@code
 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * }
* */ @XmlType(name = "OrderStatus3Code") @XmlEnum public enum OrderStatus3Code { /** * Order has been sent to the next party, eg, the next intermediary. * */ STNP, /** * Order with an Order Cancel Request pending, used to confirm receipt of an Order Cancel Request. Does not indicate that the order has been cancelled. * */ CANP, /** * Request for cancellation instruction for the order has been accepted and processed; the order has been cancelled. * */ CAND; public String value() { return name(); } public static OrderStatus3Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy