import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { TestInvocationId } from '../Test-ASN1Module/TestInvocationId.ta.mjs'; import { TestSessionId } from '../Test-ASN1Module/TestSessionId.ta.mjs'; import { TestOutcome } from '../Test-ASN1Module/TestOutcome.ta.mjs'; import { MORTs } from '../Test-ASN1Module/MORTs.ta.mjs'; import { AssociatedObjects } from '../Test-ASN1Module/AssociatedObjects.ta.mjs'; import { MonitoredAttributes } from '@wildboar/attribute-asn1module'; import { ProposedRepairActions } from '@wildboar/attribute-asn1module'; import { AdditionalText } from '@wildboar/attribute-asn1module'; import { AdditionalInformation } from '@wildboar/attribute-asn1module'; import { NotificationIdentifier } from '@wildboar/attribute-asn1module'; import { CorrelatedNotifications } from '@wildboar/attribute-asn1module'; /** * @summary TestResultInfo * @description * * ### ASN.1 Definition: * * ```asn1 * TestResultInfo ::= SEQUENCE { * testInvocationId [0] TestInvocationId OPTIONAL, * testSessionId [1] TestSessionId OPTIONAL, * testOutcome [2] TestOutcome OPTIONAL, * mORTs [3] MORTs OPTIONAL, * associatedObjects [4] AssociatedObjects OPTIONAL, * monitoredAttributes [5] MonitoredAttributes OPTIONAL, * proposedRepairActions [6] ProposedRepairActions OPTIONAL, * additionalText [7] AdditionalText OPTIONAL, * additionalInformation [8] AdditionalInformation OPTIONAL, * notificationIdentifier [9] NotificationIdentifier OPTIONAL, * correlatedNotifications [10] CorrelatedNotifications OPTIONAL * } * ``` * */ export declare class TestResultInfo { /** * @summary `testInvocationId`. * @public * @readonly */ readonly testInvocationId?: OPTIONAL; /** * @summary `testSessionId`. * @public * @readonly */ readonly testSessionId?: OPTIONAL; /** * @summary `testOutcome`. * @public * @readonly */ readonly testOutcome?: OPTIONAL; /** * @summary `mORTs`. * @public * @readonly */ readonly mORTs?: OPTIONAL; /** * @summary `associatedObjects`. * @public * @readonly */ readonly associatedObjects?: OPTIONAL; /** * @summary `monitoredAttributes`. * @public * @readonly */ readonly monitoredAttributes?: OPTIONAL; /** * @summary `proposedRepairActions`. * @public * @readonly */ readonly proposedRepairActions?: OPTIONAL; /** * @summary `additionalText`. * @public * @readonly */ readonly additionalText?: OPTIONAL; /** * @summary `additionalInformation`. * @public * @readonly */ readonly additionalInformation?: OPTIONAL; /** * @summary `notificationIdentifier`. * @public * @readonly */ readonly notificationIdentifier?: OPTIONAL; /** * @summary `correlatedNotifications`. * @public * @readonly */ readonly correlatedNotifications?: OPTIONAL; constructor( /** * @summary `testInvocationId`. * @public * @readonly */ testInvocationId?: OPTIONAL, /** * @summary `testSessionId`. * @public * @readonly */ testSessionId?: OPTIONAL, /** * @summary `testOutcome`. * @public * @readonly */ testOutcome?: OPTIONAL, /** * @summary `mORTs`. * @public * @readonly */ mORTs?: OPTIONAL, /** * @summary `associatedObjects`. * @public * @readonly */ associatedObjects?: OPTIONAL, /** * @summary `monitoredAttributes`. * @public * @readonly */ monitoredAttributes?: OPTIONAL, /** * @summary `proposedRepairActions`. * @public * @readonly */ proposedRepairActions?: OPTIONAL, /** * @summary `additionalText`. * @public * @readonly */ additionalText?: OPTIONAL, /** * @summary `additionalInformation`. * @public * @readonly */ additionalInformation?: OPTIONAL, /** * @summary `notificationIdentifier`. * @public * @readonly */ notificationIdentifier?: OPTIONAL, /** * @summary `correlatedNotifications`. * @public * @readonly */ correlatedNotifications?: OPTIONAL); /** * @summary Restructures an object into a TestResultInfo * @description * * This takes an `object` and converts it to a `TestResultInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `TestResultInfo`. * @returns {TestResultInfo} */ static _from_object(_o: { [_K in keyof TestResultInfo]: TestResultInfo[_K]; }): TestResultInfo; } /** * @summary The Leading Root Component Types of TestResultInfo * @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_TestResultInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of TestResultInfo * @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_TestResultInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of TestResultInfo * @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_TestResultInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) TestResultInfo * @function * @param {_Element} el The element being decoded. * @returns {TestResultInfo} The decoded data structure. */ export declare function _decode_TestResultInfo(el: _Element): TestResultInfo; /** * @summary Encodes a(n) TestResultInfo 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 TestResultInfo, encoded as an ASN.1 Element. */ export declare function _encode_TestResultInfo(value: TestResultInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=TestResultInfo.ta.d.mts.map