import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ServiceReportCause } from '../SecurityAuditTrail-ASN1Module/ServiceReportCause.ta.mjs'; import { NotificationIdentifier } from '@wildboar/attribute-asn1module'; import { CorrelatedNotifications } from '@wildboar/attribute-asn1module'; import { AdditionalText } from '@wildboar/attribute-asn1module'; import { AdditionalInformation } from '@wildboar/attribute-asn1module'; /** * @summary SecurityAuditInfo * @description * * ### ASN.1 Definition: * * ```asn1 * SecurityAuditInfo ::= SEQUENCE { * serviceReportCause ServiceReportCause OPTIONAL, * notificationIdentifier NotificationIdentifier OPTIONAL, * correlatedNotifications [1] IMPLICIT CorrelatedNotifications OPTIONAL, * additionalText AdditionalText OPTIONAL, * additionalInformation [2] IMPLICIT AdditionalInformation OPTIONAL * } * ``` * */ export declare class SecurityAuditInfo { /** * @summary `serviceReportCause`. * @public * @readonly */ readonly serviceReportCause?: OPTIONAL; /** * @summary `notificationIdentifier`. * @public * @readonly */ readonly notificationIdentifier?: OPTIONAL; /** * @summary `correlatedNotifications`. * @public * @readonly */ readonly correlatedNotifications?: OPTIONAL; /** * @summary `additionalText`. * @public * @readonly */ readonly additionalText?: OPTIONAL; /** * @summary `additionalInformation`. * @public * @readonly */ readonly additionalInformation?: OPTIONAL; constructor( /** * @summary `serviceReportCause`. * @public * @readonly */ serviceReportCause?: OPTIONAL, /** * @summary `notificationIdentifier`. * @public * @readonly */ notificationIdentifier?: OPTIONAL, /** * @summary `correlatedNotifications`. * @public * @readonly */ correlatedNotifications?: OPTIONAL, /** * @summary `additionalText`. * @public * @readonly */ additionalText?: OPTIONAL, /** * @summary `additionalInformation`. * @public * @readonly */ additionalInformation?: OPTIONAL); /** * @summary Restructures an object into a SecurityAuditInfo * @description * * This takes an `object` and converts it to a `SecurityAuditInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `SecurityAuditInfo`. * @returns {SecurityAuditInfo} */ static _from_object(_o: { [_K in keyof SecurityAuditInfo]: SecurityAuditInfo[_K]; }): SecurityAuditInfo; } /** * @summary The Leading Root Component Types of SecurityAuditInfo * @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_SecurityAuditInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of SecurityAuditInfo * @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_SecurityAuditInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of SecurityAuditInfo * @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_SecurityAuditInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) SecurityAuditInfo * @function * @param {_Element} el The element being decoded. * @returns {SecurityAuditInfo} The decoded data structure. */ export declare function _decode_SecurityAuditInfo(el: _Element): SecurityAuditInfo; /** * @summary Encodes a(n) SecurityAuditInfo 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 SecurityAuditInfo, encoded as an ASN.1 Element. */ export declare function _encode_SecurityAuditInfo(value: SecurityAuditInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=SecurityAuditInfo.ta.d.mts.map