@wildboar/acse
Version:
Association Control Service Element PDUs in TypeScript
41 lines (40 loc) • 1.07 kB
JavaScript
import * as $ from '@wildboar/asn1/functional';
/**
* @summary Result_acceptance
* @constant
* @type {number}
*/
export const Result_acceptance = 0; /* LONG_NAMED_INTEGER_VALUE */
/**
* @summary Result_acceptance
* @constant
* @type {number}
*/
export const acceptance = Result_acceptance; /* SHORT_NAMED_INTEGER_VALUE */
/**
* @summary Result_user_rejection
* @constant
* @type {number}
*/
export const Result_user_rejection = 1; /* LONG_NAMED_INTEGER_VALUE */
/**
* @summary Result_user_rejection
* @constant
* @type {number}
*/
export const user_rejection = Result_user_rejection; /* SHORT_NAMED_INTEGER_VALUE */
/**
* @summary Result_provider_rejection
* @constant
* @type {number}
*/
export const Result_provider_rejection = 2; /* LONG_NAMED_INTEGER_VALUE */
/**
* @summary Result_provider_rejection
* @constant
* @type {number}
*/
export const provider_rejection = Result_provider_rejection; /* SHORT_NAMED_INTEGER_VALUE */
export const _decode_Result = $._decodeInteger;
export const _encode_Result = $._encodeInteger;
/* eslint-enable */