import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary ServiceProviderErrorResponseReason * @description * * ### ASN.1 Definition: * * ```asn1 * ServiceProviderErrorResponseReason ::= ENUMERATED { * insufficientResources(0), providerDoesNotExist(1), providerNotAvailable(2), * requiredServiceNotAvailable(3)} * ``` * * @enum {number} */ export declare enum _enum_for_ServiceProviderErrorResponseReason { insufficientResources = 0, providerDoesNotExist = 1, providerNotAvailable = 2, requiredServiceNotAvailable = 3 } /** * @summary ServiceProviderErrorResponseReason * @description * * ### ASN.1 Definition: * * ```asn1 * ServiceProviderErrorResponseReason ::= ENUMERATED { * insufficientResources(0), providerDoesNotExist(1), providerNotAvailable(2), * requiredServiceNotAvailable(3)} * ``` * * @enum {number} */ export type ServiceProviderErrorResponseReason = _enum_for_ServiceProviderErrorResponseReason; /** * @summary ServiceProviderErrorResponseReason * @description * * ### ASN.1 Definition: * * ```asn1 * ServiceProviderErrorResponseReason ::= ENUMERATED { * insufficientResources(0), providerDoesNotExist(1), providerNotAvailable(2), * requiredServiceNotAvailable(3)} * ``` * * @enum {number} */ export declare const ServiceProviderErrorResponseReason: typeof _enum_for_ServiceProviderErrorResponseReason; /** * @summary ServiceProviderErrorResponseReason_insufficientResources * @constant * @type {number} */ export declare const ServiceProviderErrorResponseReason_insufficientResources: ServiceProviderErrorResponseReason; /** * @summary insufficientResources * @constant * @type {number} */ export declare const insufficientResources: ServiceProviderErrorResponseReason; /** * @summary ServiceProviderErrorResponseReason_providerDoesNotExist * @constant * @type {number} */ export declare const ServiceProviderErrorResponseReason_providerDoesNotExist: ServiceProviderErrorResponseReason; /** * @summary providerDoesNotExist * @constant * @type {number} */ export declare const providerDoesNotExist: ServiceProviderErrorResponseReason; /** * @summary ServiceProviderErrorResponseReason_providerNotAvailable * @constant * @type {number} */ export declare const ServiceProviderErrorResponseReason_providerNotAvailable: ServiceProviderErrorResponseReason; /** * @summary providerNotAvailable * @constant * @type {number} */ export declare const providerNotAvailable: ServiceProviderErrorResponseReason; /** * @summary ServiceProviderErrorResponseReason_requiredServiceNotAvailable * @constant * @type {number} */ export declare const ServiceProviderErrorResponseReason_requiredServiceNotAvailable: ServiceProviderErrorResponseReason; /** * @summary requiredServiceNotAvailable * @constant * @type {number} */ export declare const requiredServiceNotAvailable: ServiceProviderErrorResponseReason; /** * @summary Decodes an ASN.1 element into a(n) ServiceProviderErrorResponseReason * @function * @param {_Element} el The element being decoded. * @returns {ServiceProviderErrorResponseReason} The decoded data structure. */ export declare function _decode_ServiceProviderErrorResponseReason(el: _Element): ServiceProviderErrorResponseReason; /** * @summary Encodes a(n) ServiceProviderErrorResponseReason into an ASN.1 Element. * @function * @param value The element being encoded. * @param elGetter A function that can be used to get new ASN.1 elements. * @returns {_Element} The ServiceProviderErrorResponseReason, encoded as an ASN.1 Element. */ export declare function _encode_ServiceProviderErrorResponseReason(value: ServiceProviderErrorResponseReason, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ServiceProviderErrorResponseReason.ta.d.mts.map