com.prowidesoftware.swift.model.mx.dic.AffirmStatus1Code 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 AffirmStatus1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "AffirmStatus1Code")
@XmlEnum
public enum AffirmStatus1Code {
/**
* Notfies that the trade confimation was conpleted.
*
*/
ATCN,
/**
* Notfies the clearing status changed.
*
*/
ATSC,
/**
* Data was successfully matched.
*
*/
COMP,
/**
* Data was mismatched.
*
*/
MISM,
/**
* Model has errors.
*
*/
MISE,
/**
* Have no trading permissions.
*
*/
NOTP,
/**
* Query time was out of range.
*
*/
OUOR,
/**
* Query time was over system service time.
*
*/
OUOS,
/**
* Format of upload data was right, and system receives successfully.
*
*/
RECE,
/**
* Format of upload data was wrong, and system receives unsuccessfully.
*
*/
UNRE;
public String value() {
return name();
}
public static AffirmStatus1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy