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