import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ObjectInstance } from '@wildboar/cmip'; import { GroupObjects } from '@wildboar/attribute-asn1module'; import { RequestIdentifier } from '../RTMModule/RequestIdentifier.ta.mjs'; import { NotificationIdentifier } from '@wildboar/attribute-asn1module'; import { CorrelatedNotifications } from '@wildboar/attribute-asn1module'; import { ResponseTime } from '../RTMModule/ResponseTime.ta.mjs'; import { Integer } from '../MetricModule/Integer.ta.mjs'; import { ResponseSync, _enum_for_ResponseSync } from '../RTMModule/ResponseSync.ta.mjs'; import { TimePeriod } from '../MetricModule/TimePeriod.ta.mjs'; import { AdditionalText } from '@wildboar/attribute-asn1module'; import { AdditionalInformation } from '@wildboar/attribute-asn1module'; /** * @summary ResponseConfirmationInfo * @description * * ### ASN.1 Definition: * * ```asn1 * ResponseConfirmationInfo ::= SEQUENCE { * responseMonitor ObjectInstance, * responseRequester ObjectInstance, * responseConfirmationObject ObjectInstance, * routeList GroupObjects, * requestIdentifier RequestIdentifier, * notificationIdentifier [1] NotificationIdentifier OPTIONAL, * correlatedNotifications [2] CorrelatedNotifications OPTIONAL, * responseTime [3] ResponseTime, * maximumResponseTimeError [4] ResponseTime OPTIONAL, * responseRequestLength [5] Integer OPTIONAL, * responseLength [6] Integer OPTIONAL, * responseSync ResponseSync, * responseDelayTime [7] TimePeriod OPTIONAL, * responseTimeout [8] TimePeriod OPTIONAL, * additionalText [9] AdditionalText OPTIONAL, * additionalInformation [10] AdditionalInformation OPTIONAL * } * ``` * */ export declare class ResponseConfirmationInfo { /** * @summary `responseMonitor`. * @public * @readonly */ readonly responseMonitor: ObjectInstance; /** * @summary `responseRequester`. * @public * @readonly */ readonly responseRequester: ObjectInstance; /** * @summary `responseConfirmationObject`. * @public * @readonly */ readonly responseConfirmationObject: ObjectInstance; /** * @summary `routeList`. * @public * @readonly */ readonly routeList: GroupObjects; /** * @summary `requestIdentifier`. * @public * @readonly */ readonly requestIdentifier: RequestIdentifier; /** * @summary `notificationIdentifier`. * @public * @readonly */ readonly notificationIdentifier: OPTIONAL; /** * @summary `correlatedNotifications`. * @public * @readonly */ readonly correlatedNotifications: OPTIONAL; /** * @summary `responseTime`. * @public * @readonly */ readonly responseTime: ResponseTime; /** * @summary `maximumResponseTimeError`. * @public * @readonly */ readonly maximumResponseTimeError: OPTIONAL; /** * @summary `responseRequestLength`. * @public * @readonly */ readonly responseRequestLength: OPTIONAL; /** * @summary `responseLength`. * @public * @readonly */ readonly responseLength: OPTIONAL; /** * @summary `responseSync`. * @public * @readonly */ readonly responseSync: ResponseSync; /** * @summary `responseDelayTime`. * @public * @readonly */ readonly responseDelayTime?: OPTIONAL; /** * @summary `responseTimeout`. * @public * @readonly */ readonly responseTimeout?: OPTIONAL; /** * @summary `additionalText`. * @public * @readonly */ readonly additionalText?: OPTIONAL; /** * @summary `additionalInformation`. * @public * @readonly */ readonly additionalInformation?: OPTIONAL; constructor( /** * @summary `responseMonitor`. * @public * @readonly */ responseMonitor: ObjectInstance, /** * @summary `responseRequester`. * @public * @readonly */ responseRequester: ObjectInstance, /** * @summary `responseConfirmationObject`. * @public * @readonly */ responseConfirmationObject: ObjectInstance, /** * @summary `routeList`. * @public * @readonly */ routeList: GroupObjects, /** * @summary `requestIdentifier`. * @public * @readonly */ requestIdentifier: RequestIdentifier, /** * @summary `notificationIdentifier`. * @public * @readonly */ notificationIdentifier: OPTIONAL, /** * @summary `correlatedNotifications`. * @public * @readonly */ correlatedNotifications: OPTIONAL, /** * @summary `responseTime`. * @public * @readonly */ responseTime: ResponseTime, /** * @summary `maximumResponseTimeError`. * @public * @readonly */ maximumResponseTimeError: OPTIONAL, /** * @summary `responseRequestLength`. * @public * @readonly */ responseRequestLength: OPTIONAL, /** * @summary `responseLength`. * @public * @readonly */ responseLength: OPTIONAL, /** * @summary `responseSync`. * @public * @readonly */ responseSync: ResponseSync, /** * @summary `responseDelayTime`. * @public * @readonly */ responseDelayTime?: OPTIONAL, /** * @summary `responseTimeout`. * @public * @readonly */ responseTimeout?: OPTIONAL, /** * @summary `additionalText`. * @public * @readonly */ additionalText?: OPTIONAL, /** * @summary `additionalInformation`. * @public * @readonly */ additionalInformation?: OPTIONAL); /** * @summary Restructures an object into a ResponseConfirmationInfo * @description * * This takes an `object` and converts it to a `ResponseConfirmationInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `ResponseConfirmationInfo`. * @returns {ResponseConfirmationInfo} */ static _from_object(_o: { [_K in keyof ResponseConfirmationInfo]: ResponseConfirmationInfo[_K]; }): ResponseConfirmationInfo; /** * @summary The enum used as the type of the component `responseSync` * @public * @static */ static _enum_for_responseSync: typeof _enum_for_ResponseSync; } /** * @summary The Leading Root Component Types of ResponseConfirmationInfo * @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_ResponseConfirmationInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of ResponseConfirmationInfo * @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_ResponseConfirmationInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of ResponseConfirmationInfo * @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_ResponseConfirmationInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) ResponseConfirmationInfo * @function * @param {_Element} el The element being decoded. * @returns {ResponseConfirmationInfo} The decoded data structure. */ export declare function _decode_ResponseConfirmationInfo(el: _Element): ResponseConfirmationInfo; /** * @summary Encodes a(n) ResponseConfirmationInfo 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 ResponseConfirmationInfo, encoded as an ASN.1 Element. */ export declare function _encode_ResponseConfirmationInfo(value: ResponseConfirmationInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ResponseConfirmationInfo.ta.d.mts.map