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