import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ActionResponse } from '../UsageMeteringFunction/ActionResponse.ta.mjs'; import { ReportingTriggers } from '../UsageMeteringFunction/ReportingTriggers.ta.mjs'; import { AccountableObjectsReferenceList } from '../UsageMeteringFunction/AccountableObjectsReferenceList.ta.mjs'; import { DataObjectsReferenceList } from '../UsageMeteringFunction/DataObjectsReferenceList.ta.mjs'; import { ManagementExtension } from '@wildboar/attribute-asn1module'; /** * @summary ControlInfo * @description * * ### ASN.1 Definition: * * ```asn1 * ControlInfo ::= SEQUENCE { * actionResponse ActionResponse, * reportingTriggers [0] ReportingTriggers OPTIONAL, * accountableObjectsReferenceList * [1] AccountableObjectsReferenceList OPTIONAL, * dataObjectsReferenceList [2] DataObjectsReferenceList OPTIONAL, * additionalInformation [3] SET OF ManagementExtension * } * ``` * */ export declare class ControlInfo { /** * @summary `actionResponse`. * @public * @readonly */ readonly actionResponse: ActionResponse; /** * @summary `reportingTriggers`. * @public * @readonly */ readonly reportingTriggers: OPTIONAL; /** * @summary `accountableObjectsReferenceList`. * @public * @readonly */ readonly accountableObjectsReferenceList: OPTIONAL; /** * @summary `dataObjectsReferenceList`. * @public * @readonly */ readonly dataObjectsReferenceList: OPTIONAL; /** * @summary `additionalInformation`. * @public * @readonly */ readonly additionalInformation: ManagementExtension[]; constructor( /** * @summary `actionResponse`. * @public * @readonly */ actionResponse: ActionResponse, /** * @summary `reportingTriggers`. * @public * @readonly */ reportingTriggers: OPTIONAL, /** * @summary `accountableObjectsReferenceList`. * @public * @readonly */ accountableObjectsReferenceList: OPTIONAL, /** * @summary `dataObjectsReferenceList`. * @public * @readonly */ dataObjectsReferenceList: OPTIONAL, /** * @summary `additionalInformation`. * @public * @readonly */ additionalInformation: ManagementExtension[]); /** * @summary Restructures an object into a ControlInfo * @description * * This takes an `object` and converts it to a `ControlInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `ControlInfo`. * @returns {ControlInfo} */ static _from_object(_o: { [_K in keyof ControlInfo]: ControlInfo[_K]; }): ControlInfo; } /** * @summary The Leading Root Component Types of ControlInfo * @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_ControlInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of ControlInfo * @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_ControlInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of ControlInfo * @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_ControlInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) ControlInfo * @function * @param {_Element} el The element being decoded. * @returns {ControlInfo} The decoded data structure. */ export declare function _decode_ControlInfo(el: _Element): ControlInfo; /** * @summary Encodes a(n) ControlInfo 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 ControlInfo, encoded as an ASN.1 Element. */ export declare function _encode_ControlInfo(value: ControlInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ControlInfo.ta.d.mts.map