import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { SecurityAlarmCause } from '@wildboar/attribute-asn1module'; import { SecurityAlarmSeverity } from '@wildboar/attribute-asn1module'; import { SecurityAlarmDetector } from '@wildboar/attribute-asn1module'; import { ServiceUser } from '@wildboar/attribute-asn1module'; import { ServiceProvider } from '@wildboar/attribute-asn1module'; import { NotificationIdentifier } from '@wildboar/attribute-asn1module'; import { CorrelatedNotifications } from '@wildboar/attribute-asn1module'; import { AdditionalText } from '@wildboar/attribute-asn1module'; import { AdditionalInformation } from '@wildboar/attribute-asn1module'; import { _enum_for_PerceivedSeverity } from '@wildboar/attribute-asn1module'; /** * @summary SecurityAlarmInfo * @description * * ### ASN.1 Definition: * * ```asn1 * SecurityAlarmInfo ::= SEQUENCE { * securityAlarmCause SecurityAlarmCause, * securityAlarmSeverity SecurityAlarmSeverity, * securityAlarmDetector SecurityAlarmDetector, * serviceUser ServiceUser, * serviceProvider ServiceProvider, * notificationIdentifier NotificationIdentifier OPTIONAL, * correlatedNotifications [1] CorrelatedNotifications OPTIONAL, * additionalText AdditionalText OPTIONAL, * additionalInformation [2] AdditionalInformation OPTIONAL * } * ``` * */ export declare class SecurityAlarmInfo { /** * @summary `securityAlarmCause`. * @public * @readonly */ readonly securityAlarmCause: SecurityAlarmCause; /** * @summary `securityAlarmSeverity`. * @public * @readonly */ readonly securityAlarmSeverity: SecurityAlarmSeverity; /** * @summary `securityAlarmDetector`. * @public * @readonly */ readonly securityAlarmDetector: SecurityAlarmDetector; /** * @summary `serviceUser`. * @public * @readonly */ readonly serviceUser: ServiceUser; /** * @summary `serviceProvider`. * @public * @readonly */ readonly serviceProvider: ServiceProvider; /** * @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 `securityAlarmCause`. * @public * @readonly */ securityAlarmCause: SecurityAlarmCause, /** * @summary `securityAlarmSeverity`. * @public * @readonly */ securityAlarmSeverity: SecurityAlarmSeverity, /** * @summary `securityAlarmDetector`. * @public * @readonly */ securityAlarmDetector: SecurityAlarmDetector, /** * @summary `serviceUser`. * @public * @readonly */ serviceUser: ServiceUser, /** * @summary `serviceProvider`. * @public * @readonly */ serviceProvider: ServiceProvider, /** * @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 SecurityAlarmInfo * @description * * This takes an `object` and converts it to a `SecurityAlarmInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `SecurityAlarmInfo`. * @returns {SecurityAlarmInfo} */ static _from_object(_o: { [_K in keyof SecurityAlarmInfo]: SecurityAlarmInfo[_K]; }): SecurityAlarmInfo; /** * @summary The enum used as the type of the component `securityAlarmSeverity` * @public * @static */ static _enum_for_securityAlarmSeverity: typeof _enum_for_PerceivedSeverity; } /** * @summary The Leading Root Component Types of SecurityAlarmInfo * @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_SecurityAlarmInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of SecurityAlarmInfo * @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_SecurityAlarmInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of SecurityAlarmInfo * @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_SecurityAlarmInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) SecurityAlarmInfo * @function * @param {_Element} el The element being decoded. * @returns {SecurityAlarmInfo} The decoded data structure. */ export declare function _decode_SecurityAlarmInfo(el: _Element): SecurityAlarmInfo; /** * @summary Encodes a(n) SecurityAlarmInfo 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 SecurityAlarmInfo, encoded as an ASN.1 Element. */ export declare function _encode_SecurityAlarmInfo(value: SecurityAlarmInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=SecurityAlarmInfo.ta.d.mts.map