import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { OperationalState, _enum_for_OperationalState } from '@wildboar/attribute-asn1module'; import { ActivateReply_responseCode } from '../ActionModule/ActivateReply-responseCode.ta.mjs'; import { ManagementExtension } from '@wildboar/attribute-asn1module'; /** * @summary ActivateReply * @description * * ### ASN.1 Definition: * * ```asn1 * ActivateReply ::= SEQUENCE { * operationalStatus [0] OperationalState, * responseCode * [1] INTEGER {successResponse(0), serviceProviderErrorResponse(1)}, * responseParams [2] SET OF ManagementExtension OPTIONAL * } * ``` * */ export declare class ActivateReply { /** * @summary `operationalStatus`. * @public * @readonly */ readonly operationalStatus: OperationalState; /** * @summary `responseCode`. * @public * @readonly */ readonly responseCode: ActivateReply_responseCode; /** * @summary `responseParams`. * @public * @readonly */ readonly responseParams?: OPTIONAL; constructor( /** * @summary `operationalStatus`. * @public * @readonly */ operationalStatus: OperationalState, /** * @summary `responseCode`. * @public * @readonly */ responseCode: ActivateReply_responseCode, /** * @summary `responseParams`. * @public * @readonly */ responseParams?: OPTIONAL); /** * @summary Restructures an object into a ActivateReply * @description * * This takes an `object` and converts it to a `ActivateReply`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `ActivateReply`. * @returns {ActivateReply} */ static _from_object(_o: { [_K in keyof ActivateReply]: ActivateReply[_K]; }): ActivateReply; /** * @summary The enum used as the type of the component `operationalStatus` * @public * @static */ static _enum_for_operationalStatus: typeof _enum_for_OperationalState; } /** * @summary The Leading Root Component Types of ActivateReply * @description * * This is an array of `ComponentSpec`s that define how to decode the leading root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_1_spec_for_ActivateReply: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of ActivateReply * @description * * This is an array of `ComponentSpec`s that define how to decode the trailing root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_2_spec_for_ActivateReply: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of ActivateReply * @description * * This is an array of `ComponentSpec`s that define how to decode the extension addition component type list of a SET or SEQUENCE. * * @constant */ export declare const _extension_additions_list_spec_for_ActivateReply: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) ActivateReply * @function * @param {_Element} el The element being decoded. * @returns {ActivateReply} The decoded data structure. */ export declare function _decode_ActivateReply(el: _Element): ActivateReply; /** * @summary Encodes a(n) ActivateReply 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 ActivateReply, encoded as an ASN.1 Element. */ export declare function _encode_ActivateReply(value: ActivateReply, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ActivateReply.ta.d.mts.map