import * as $ from '@wildboar/asn1/functional'; /** * @summary ReportingEvent * @description * * ### ASN.1 Definition: * * ```asn1 * ReportingEvent ::= ENUMERATED { * registration(0), request(1), accept(2), complete(3), corresponding(4), * bulk(5), interruption(6)} * ``` * * @enum {number} */ export declare enum _enum_for_ReportingEvent { registration = 0, request = 1, accept = 2, complete = 3, corresponding = 4, bulk = 5, interruption = 6 } /** * @summary ReportingEvent * @description * * ### ASN.1 Definition: * * ```asn1 * ReportingEvent ::= ENUMERATED { * registration(0), request(1), accept(2), complete(3), corresponding(4), * bulk(5), interruption(6)} * ``` * * @enum {number} */ export type ReportingEvent = _enum_for_ReportingEvent; /** * @summary ReportingEvent * @description * * ### ASN.1 Definition: * * ```asn1 * ReportingEvent ::= ENUMERATED { * registration(0), request(1), accept(2), complete(3), corresponding(4), * bulk(5), interruption(6)} * ``` * * @enum {number} */ export declare const ReportingEvent: typeof _enum_for_ReportingEvent; /** * @summary ReportingEvent_registration * @constant * @type {number} */ export declare const ReportingEvent_registration: ReportingEvent; /** * @summary registration * @constant * @type {number} */ export declare const registration: ReportingEvent; /** * @summary ReportingEvent_request * @constant * @type {number} */ export declare const ReportingEvent_request: ReportingEvent; /** * @summary request * @constant * @type {number} */ export declare const request: ReportingEvent; /** * @summary ReportingEvent_accept * @constant * @type {number} */ export declare const ReportingEvent_accept: ReportingEvent; /** * @summary accept * @constant * @type {number} */ export declare const accept: ReportingEvent; /** * @summary ReportingEvent_complete * @constant * @type {number} */ export declare const ReportingEvent_complete: ReportingEvent; /** * @summary complete * @constant * @type {number} */ export declare const complete: ReportingEvent; /** * @summary ReportingEvent_corresponding * @constant * @type {number} */ export declare const ReportingEvent_corresponding: ReportingEvent; /** * @summary corresponding * @constant * @type {number} */ export declare const corresponding: ReportingEvent; /** * @summary ReportingEvent_bulk * @constant * @type {number} */ export declare const ReportingEvent_bulk: ReportingEvent; /** * @summary bulk * @constant * @type {number} */ export declare const bulk: ReportingEvent; /** * @summary ReportingEvent_interruption * @constant * @type {number} */ export declare const ReportingEvent_interruption: ReportingEvent; /** * @summary interruption * @constant * @type {number} */ export declare const interruption: ReportingEvent; export declare const _decode_ReportingEvent: $.ASN1Decoder; export declare const _encode_ReportingEvent: $.ASN1Encoder; //# sourceMappingURL=ReportingEvent.ta.d.mts.map