import { INTEGER } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary DeliverResult * @description * * ### ASN.1 Definition: * * ```asn1 * DeliverResult ::= INTEGER { * pass(0), communicationError(1), equipmentError(2), qosError(3), * accessDenied(4), notFound(5), insufficientSpace(6), alreadyDelivered(7), * inProgress(8), unknown(9)} * ``` */ export type DeliverResult = INTEGER; /** * @summary DeliverResult_pass * @constant * @type {number} */ export declare const DeliverResult_pass: DeliverResult; /** * @summary DeliverResult_pass * @constant * @type {number} */ export declare const pass: DeliverResult; /** * @summary DeliverResult_communicationError * @constant * @type {number} */ export declare const DeliverResult_communicationError: DeliverResult; /** * @summary DeliverResult_communicationError * @constant * @type {number} */ export declare const communicationError: DeliverResult; /** * @summary DeliverResult_equipmentError * @constant * @type {number} */ export declare const DeliverResult_equipmentError: DeliverResult; /** * @summary DeliverResult_equipmentError * @constant * @type {number} */ export declare const equipmentError: DeliverResult; /** * @summary DeliverResult_qosError * @constant * @type {number} */ export declare const DeliverResult_qosError: DeliverResult; /** * @summary DeliverResult_qosError * @constant * @type {number} */ export declare const qosError: DeliverResult; /** * @summary DeliverResult_accessDenied * @constant * @type {number} */ export declare const DeliverResult_accessDenied: DeliverResult; /** * @summary DeliverResult_accessDenied * @constant * @type {number} */ export declare const accessDenied: DeliverResult; /** * @summary DeliverResult_notFound * @constant * @type {number} */ export declare const DeliverResult_notFound: DeliverResult; /** * @summary DeliverResult_notFound * @constant * @type {number} */ export declare const notFound: DeliverResult; /** * @summary DeliverResult_insufficientSpace * @constant * @type {number} */ export declare const DeliverResult_insufficientSpace: DeliverResult; /** * @summary DeliverResult_insufficientSpace * @constant * @type {number} */ export declare const insufficientSpace: DeliverResult; /** * @summary DeliverResult_alreadyDelivered * @constant * @type {number} */ export declare const DeliverResult_alreadyDelivered: DeliverResult; /** * @summary DeliverResult_alreadyDelivered * @constant * @type {number} */ export declare const alreadyDelivered: DeliverResult; /** * @summary DeliverResult_inProgress * @constant * @type {number} */ export declare const DeliverResult_inProgress: DeliverResult; /** * @summary DeliverResult_inProgress * @constant * @type {number} */ export declare const inProgress: DeliverResult; /** * @summary DeliverResult_unknown * @constant * @type {number} */ export declare const DeliverResult_unknown: DeliverResult; /** * @summary DeliverResult_unknown * @constant * @type {number} */ export declare const unknown: DeliverResult; export declare const _decode_DeliverResult: $.ASN1Decoder; export declare const _encode_DeliverResult: $.ASN1Encoder; //# sourceMappingURL=DeliverResult.ta.d.mts.map