import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ObjectInstance } from '@wildboar/cmip'; import { AttributeId } from '@wildboar/cmip'; import { NumericAttributeIdArray } from '../SummarizationASN1Productions/NumericAttributeIdArray.ta.mjs'; import { ReportTimeAttributeIdList } from '../SummarizationASN1Productions/ReportTimeAttributeIdList.ta.mjs'; /** * @summary BufferedObservationId * @description * * ### ASN.1 Definition: * * ```asn1 * BufferedObservationId ::= SEQUENCE { * observedObject ObjectInstance, * scanAttributeIdList [0] SET OF AttributeId OPTIONAL, * numericAttributeIdArray [1] NumericAttributeIdArray OPTIONAL, * reportTimeAttributeIdList [2] ReportTimeAttributeIdList OPTIONAL * } * ``` * */ export declare class BufferedObservationId { /** * @summary `observedObject`. * @public * @readonly */ readonly observedObject: ObjectInstance; /** * @summary `scanAttributeIdList`. * @public * @readonly */ readonly scanAttributeIdList?: OPTIONAL; /** * @summary `numericAttributeIdArray`. * @public * @readonly */ readonly numericAttributeIdArray?: OPTIONAL; /** * @summary `reportTimeAttributeIdList`. * @public * @readonly */ readonly reportTimeAttributeIdList?: OPTIONAL; constructor( /** * @summary `observedObject`. * @public * @readonly */ observedObject: ObjectInstance, /** * @summary `scanAttributeIdList`. * @public * @readonly */ scanAttributeIdList?: OPTIONAL, /** * @summary `numericAttributeIdArray`. * @public * @readonly */ numericAttributeIdArray?: OPTIONAL, /** * @summary `reportTimeAttributeIdList`. * @public * @readonly */ reportTimeAttributeIdList?: OPTIONAL); /** * @summary Restructures an object into a BufferedObservationId * @description * * This takes an `object` and converts it to a `BufferedObservationId`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `BufferedObservationId`. * @returns {BufferedObservationId} */ static _from_object(_o: { [_K in keyof BufferedObservationId]: BufferedObservationId[_K]; }): BufferedObservationId; } /** * @summary The Leading Root Component Types of BufferedObservationId * @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_BufferedObservationId: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of BufferedObservationId * @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_BufferedObservationId: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of BufferedObservationId * @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_BufferedObservationId: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) BufferedObservationId * @function * @param {_Element} el The element being decoded. * @returns {BufferedObservationId} The decoded data structure. */ export declare function _decode_BufferedObservationId(el: _Element): BufferedObservationId; /** * @summary Encodes a(n) BufferedObservationId 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 BufferedObservationId, encoded as an ASN.1 Element. */ export declare function _encode_BufferedObservationId(value: BufferedObservationId, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=BufferedObservationId.ta.d.mts.map