import { INTEGER } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary QOSErrorCause * @description * * ### ASN.1 Definition: * * ```asn1 * QOSErrorCause ::= INTEGER { * responseTimeExcessive(0), queueSizeExceeded(1), bandwidthReduced(2), * retransmissionRateExcessive(3)} * ``` */ export type QOSErrorCause = INTEGER; /** * @summary QOSErrorCause_responseTimeExcessive * @constant * @type {number} */ export declare const QOSErrorCause_responseTimeExcessive: QOSErrorCause; /** * @summary QOSErrorCause_responseTimeExcessive * @constant * @type {number} */ export declare const responseTimeExcessive: QOSErrorCause; /** * @summary QOSErrorCause_queueSizeExceeded * @constant * @type {number} */ export declare const QOSErrorCause_queueSizeExceeded: QOSErrorCause; /** * @summary QOSErrorCause_queueSizeExceeded * @constant * @type {number} */ export declare const queueSizeExceeded: QOSErrorCause; /** * @summary QOSErrorCause_bandwidthReduced * @constant * @type {number} */ export declare const QOSErrorCause_bandwidthReduced: QOSErrorCause; /** * @summary QOSErrorCause_bandwidthReduced * @constant * @type {number} */ export declare const bandwidthReduced: QOSErrorCause; /** * @summary QOSErrorCause_retransmissionRateExcessive * @constant * @type {number} */ export declare const QOSErrorCause_retransmissionRateExcessive: QOSErrorCause; /** * @summary QOSErrorCause_retransmissionRateExcessive * @constant * @type {number} */ export declare const retransmissionRateExcessive: QOSErrorCause; export declare const _decode_QOSErrorCause: $.ASN1Decoder; export declare const _encode_QOSErrorCause: $.ASN1Encoder; //# sourceMappingURL=QOSErrorCause.ta.d.mts.map