import * as $ from '@wildboar/asn1/functional'; /** * @summary DeniedMeteringAction * @description * * ### ASN.1 Definition: * * ```asn1 * DeniedMeteringAction ::= ENUMERATED { * canNotStart(0), canNotSuspend(1), canNotResume(2)} * ``` * * @enum {number} */ export declare enum _enum_for_DeniedMeteringAction { canNotStart = 0, canNotSuspend = 1, canNotResume = 2 } /** * @summary DeniedMeteringAction * @description * * ### ASN.1 Definition: * * ```asn1 * DeniedMeteringAction ::= ENUMERATED { * canNotStart(0), canNotSuspend(1), canNotResume(2)} * ``` * * @enum {number} */ export type DeniedMeteringAction = _enum_for_DeniedMeteringAction; /** * @summary DeniedMeteringAction * @description * * ### ASN.1 Definition: * * ```asn1 * DeniedMeteringAction ::= ENUMERATED { * canNotStart(0), canNotSuspend(1), canNotResume(2)} * ``` * * @enum {number} */ export declare const DeniedMeteringAction: typeof _enum_for_DeniedMeteringAction; /** * @summary DeniedMeteringAction_canNotStart * @constant * @type {number} */ export declare const DeniedMeteringAction_canNotStart: DeniedMeteringAction; /** * @summary canNotStart * @constant * @type {number} */ export declare const canNotStart: DeniedMeteringAction; /** * @summary DeniedMeteringAction_canNotSuspend * @constant * @type {number} */ export declare const DeniedMeteringAction_canNotSuspend: DeniedMeteringAction; /** * @summary canNotSuspend * @constant * @type {number} */ export declare const canNotSuspend: DeniedMeteringAction; /** * @summary DeniedMeteringAction_canNotResume * @constant * @type {number} */ export declare const DeniedMeteringAction_canNotResume: DeniedMeteringAction; /** * @summary canNotResume * @constant * @type {number} */ export declare const canNotResume: DeniedMeteringAction; export declare const _decode_DeniedMeteringAction: $.ASN1Decoder; export declare const _encode_DeniedMeteringAction: $.ASN1Encoder; //# sourceMappingURL=DeniedMeteringAction.ta.d.mts.map