import { OPTIONAL, GeneralizedTime, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { NonStatisticalReportInformation } from '../SummarizationASN1Productions/NonStatisticalReportInformation.ta.mjs'; import { AlgorithmOutputBuffer } from '../SummarizationASN1Productions/AlgorithmOutputBuffer.ta.mjs'; import { AlgorithmParameters } from '../SummarizationASN1Productions/AlgorithmParameters.ta.mjs'; import { IncompleteScan } from '../SummarizationASN1Productions/IncompleteScan.ta.mjs'; import { AdditionalText } from '@wildboar/attribute-asn1module'; import { AdditionalInformation } from '@wildboar/attribute-asn1module'; /** * @summary StatisticalScanReportInformation * @description * * ### ASN.1 Definition: * * ```asn1 * StatisticalScanReportInformation ::= SEQUENCE { * scanInitiationTime GeneralizedTime OPTIONAL, * -- time of scan initiation. Required if the time stamp report mode * -- attribute is present with a non-zero value. * observationReportList [6] NonStatisticalReportInformation OPTIONAL, * -- which objects passed filter, with optional attribute values * -- not present if object suppression is on and there are no scan attributes * algorithmOutputs [7] AlgorithmOutputBuffer, * -- contents of positions for each attribute depend on algorithm type * algorithmParameters [8] AlgorithmParameters OPTIONAL, * -- present only if algorithm has configurable parameters * -- contents of positions for each attribute depend on algorithm type * incompleteScan [9] IncompleteScan OPTIONAL, * -- presence indicates that the scan was incomplete. * additionalText [10] AdditionalText OPTIONAL, * additionalInformation [11] AdditionalInformation OPTIONAL * } * ``` * */ export declare class StatisticalScanReportInformation { /** * @summary `scanInitiationTime`. * @public * @readonly */ readonly scanInitiationTime: OPTIONAL; /** * @summary `observationReportList`. * @public * @readonly */ readonly observationReportList: OPTIONAL; /** * @summary `algorithmOutputs`. * @public * @readonly */ readonly algorithmOutputs: AlgorithmOutputBuffer; /** * @summary `algorithmParameters`. * @public * @readonly */ readonly algorithmParameters?: OPTIONAL; /** * @summary `incompleteScan`. * @public * @readonly */ readonly incompleteScan?: OPTIONAL; /** * @summary `additionalText`. * @public * @readonly */ readonly additionalText?: OPTIONAL; /** * @summary `additionalInformation`. * @public * @readonly */ readonly additionalInformation?: OPTIONAL; constructor( /** * @summary `scanInitiationTime`. * @public * @readonly */ scanInitiationTime: OPTIONAL, /** * @summary `observationReportList`. * @public * @readonly */ observationReportList: OPTIONAL, /** * @summary `algorithmOutputs`. * @public * @readonly */ algorithmOutputs: AlgorithmOutputBuffer, /** * @summary `algorithmParameters`. * @public * @readonly */ algorithmParameters?: OPTIONAL, /** * @summary `incompleteScan`. * @public * @readonly */ incompleteScan?: OPTIONAL, /** * @summary `additionalText`. * @public * @readonly */ additionalText?: OPTIONAL, /** * @summary `additionalInformation`. * @public * @readonly */ additionalInformation?: OPTIONAL); /** * @summary Restructures an object into a StatisticalScanReportInformation * @description * * This takes an `object` and converts it to a `StatisticalScanReportInformation`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `StatisticalScanReportInformation`. * @returns {StatisticalScanReportInformation} */ static _from_object(_o: { [_K in keyof StatisticalScanReportInformation]: StatisticalScanReportInformation[_K]; }): StatisticalScanReportInformation; } /** * @summary The Leading Root Component Types of StatisticalScanReportInformation * @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_StatisticalScanReportInformation: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of StatisticalScanReportInformation * @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_StatisticalScanReportInformation: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of StatisticalScanReportInformation * @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_StatisticalScanReportInformation: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) StatisticalScanReportInformation * @function * @param {_Element} el The element being decoded. * @returns {StatisticalScanReportInformation} The decoded data structure. */ export declare function _decode_StatisticalScanReportInformation(el: _Element): StatisticalScanReportInformation; /** * @summary Encodes a(n) StatisticalScanReportInformation 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 StatisticalScanReportInformation, encoded as an ASN.1 Element. */ export declare function _encode_StatisticalScanReportInformation(value: StatisticalScanReportInformation, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=StatisticalScanReportInformation.ta.d.mts.map