@wildboar/rose
Version:
Remote Operation Service Element PDUs in TypeScript
31 lines (30 loc) • 657 B
JavaScript
/**
* @summary cancelled
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* cancelled ERROR ::= {CODE local:-3
* }
* ```
*
* @constant
* @type {ERROR}
* @implements {ERROR}
*/
export const cancelled = {
class: 'ERROR',
decoderFor: {
'&ParameterType': undefined,
},
encoderFor: {
'&ParameterType': undefined,
},
'&errorCode': {
local: -3,
} /* OBJECT_FIELD_SETTING */ /* UNIQUE_OBJECT_FIELD_SETTING */,
'&ParameterType': 0 /* OBJECT_FIELD_SETTING OBJECT_TYPE_FIELD_SETTING */,
'&ErrorPriority': 0 /* OBJECT_FIELD_SETTING OBJECT_VALUE_SET_FIELD_SETTING */,
};
/* eslint-enable */