import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ControlledTestRequestType, _enum_for_ControlledTestRequestType } from '../Test-ASN1Module/ControlledTestRequestType.ta.mjs'; import { TestCategoryInformation } from '../Test-ASN1Module/TestCategoryInformation.ta.mjs'; import { TestSessionId } from '../Test-ASN1Module/TestSessionId.ta.mjs'; import { ToBeTestedMORTs } from '../Test-ASN1Module/ToBeTestedMORTs.ta.mjs'; import { AssociatedObjects } from '../Test-ASN1Module/AssociatedObjects.ta.mjs'; import { TimeoutPeriod } from '../Test-ASN1Module/TimeoutPeriod.ta.mjs'; import { TestObjectList } from '../Test-ASN1Module/TestObjectList.ta.mjs'; /** * @summary TestRequestControlledInfo * @description * * ### ASN.1 Definition: * * ```asn1 * TestRequestControlledInfo ::= SEQUENCE { * controlledTestRequestType [1] ControlledTestRequestType, * testCategoryInformation [2] TestCategoryInformation OPTIONAL, * testSessionId [3] TestSessionId OPTIONAL, * toBeTestedMORTs ToBeTestedMORTs OPTIONAL, * associatedObjects [5] AssociatedObjects OPTIONAL, * timeoutPeriod TimeoutPeriod OPTIONAL, * testObjectList [7] TestObjectList * } * ``` * */ export declare class TestRequestControlledInfo { /** * @summary `controlledTestRequestType`. * @public * @readonly */ readonly controlledTestRequestType: ControlledTestRequestType; /** * @summary `testCategoryInformation`. * @public * @readonly */ readonly testCategoryInformation: OPTIONAL; /** * @summary `testSessionId`. * @public * @readonly */ readonly testSessionId: OPTIONAL; /** * @summary `toBeTestedMORTs`. * @public * @readonly */ readonly toBeTestedMORTs: OPTIONAL; /** * @summary `associatedObjects`. * @public * @readonly */ readonly associatedObjects: OPTIONAL; /** * @summary `timeoutPeriod`. * @public * @readonly */ readonly timeoutPeriod: OPTIONAL; /** * @summary `testObjectList`. * @public * @readonly */ readonly testObjectList: TestObjectList; constructor( /** * @summary `controlledTestRequestType`. * @public * @readonly */ controlledTestRequestType: ControlledTestRequestType, /** * @summary `testCategoryInformation`. * @public * @readonly */ testCategoryInformation: OPTIONAL, /** * @summary `testSessionId`. * @public * @readonly */ testSessionId: OPTIONAL, /** * @summary `toBeTestedMORTs`. * @public * @readonly */ toBeTestedMORTs: OPTIONAL, /** * @summary `associatedObjects`. * @public * @readonly */ associatedObjects: OPTIONAL, /** * @summary `timeoutPeriod`. * @public * @readonly */ timeoutPeriod: OPTIONAL, /** * @summary `testObjectList`. * @public * @readonly */ testObjectList: TestObjectList); /** * @summary Restructures an object into a TestRequestControlledInfo * @description * * This takes an `object` and converts it to a `TestRequestControlledInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `TestRequestControlledInfo`. * @returns {TestRequestControlledInfo} */ static _from_object(_o: { [_K in keyof TestRequestControlledInfo]: TestRequestControlledInfo[_K]; }): TestRequestControlledInfo; /** * @summary The enum used as the type of the component `controlledTestRequestType` * @public * @static */ static _enum_for_controlledTestRequestType: typeof _enum_for_ControlledTestRequestType; } /** * @summary The Leading Root Component Types of TestRequestControlledInfo * @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_TestRequestControlledInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of TestRequestControlledInfo * @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_TestRequestControlledInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of TestRequestControlledInfo * @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_TestRequestControlledInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) TestRequestControlledInfo * @function * @param {_Element} el The element being decoded. * @returns {TestRequestControlledInfo} The decoded data structure. */ export declare function _decode_TestRequestControlledInfo(el: _Element): TestRequestControlledInfo; /** * @summary Encodes a(n) TestRequestControlledInfo 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 TestRequestControlledInfo, encoded as an ASN.1 Element. */ export declare function _encode_TestRequestControlledInfo(value: TestRequestControlledInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=TestRequestControlledInfo.ta.d.mts.map