aes70
Version:
A controller library for the AES70 protocol.
45 lines (42 loc) • 971 B
JavaScript
/*
* This file has been generated.
*/
import { Enum } from './Enum.js';
/**
* Reasons why a Commandset terminated
* @class OcaGenericEndState
*/
export class OcaGenericEndState extends Enum({
CompletedNormally: 1,
CompletedAbnormally: 2,
Interrupted: 3,
Failed: 4,
}) {}
/**
* Singleton object corresponding to the entry with value ``1``.
* @type {OcaGenericEndState}
* @member CompletedNormally
* @memberof OcaGenericEndState
* @static
*/
/**
* Singleton object corresponding to the entry with value ``2``.
* @type {OcaGenericEndState}
* @member CompletedAbnormally
* @memberof OcaGenericEndState
* @static
*/
/**
* Singleton object corresponding to the entry with value ``3``.
* @type {OcaGenericEndState}
* @member Interrupted
* @memberof OcaGenericEndState
* @static
*/
/**
* Singleton object corresponding to the entry with value ``4``.
* @type {OcaGenericEndState}
* @member Failed
* @memberof OcaGenericEndState
* @static
*/