
com.prowidesoftware.swift.model.mx.dic.CancellationStatus1Code 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 CancellationStatus1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="CancellationStatus1Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="STNP"/>
* <enumeration value="PACK"/>
* <enumeration value="CANP"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "CancellationStatus1Code")
@XmlEnum
public enum CancellationStatus1Code {
/**
* Cancellation instruction / request has been sent to the next party, ie, the next intermediary.
*
*/
STNP,
/**
* Cancellation instruction / request has been received and has been acknowledged / accepted for further processing.
*
*/
PACK,
/**
* Cancellation instruction / request is pending. It is not known at this time whether cancellation can be effected.
*
*/
CANP;
public String value() {
return name();
}
public static CancellationStatus1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy