import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ObjectInstance } from '@wildboar/cmip'; import { Scope } from '@wildboar/cmip'; import { CMISFilter } from '@wildboar/cmip'; /** * @summary ToBeTestedMORTs_scopedSet * @description * * ### ASN.1 Definition: * * ```asn1 * ToBeTestedMORTs-scopedSet ::= SEQUENCE { -- REMOVED_FROM_UNNESTING -- } * ``` * */ export declare class ToBeTestedMORTs_scopedSet { /** * @summary `base`. * @public * @readonly */ readonly base: ObjectInstance; /** * @summary `mORTsScope0`. * @public * @readonly */ readonly mORTsScope0?: OPTIONAL; /** * @summary `mORTsFilter`. * @public * @readonly */ readonly mORTsFilter?: OPTIONAL; constructor( /** * @summary `base`. * @public * @readonly */ base: ObjectInstance, /** * @summary `mORTsScope0`. * @public * @readonly */ mORTsScope0?: OPTIONAL, /** * @summary `mORTsFilter`. * @public * @readonly */ mORTsFilter?: OPTIONAL); /** * @summary Restructures an object into a ToBeTestedMORTs_scopedSet * @description * * This takes an `object` and converts it to a `ToBeTestedMORTs_scopedSet`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `ToBeTestedMORTs_scopedSet`. * @returns {ToBeTestedMORTs_scopedSet} */ static _from_object(_o: { [_K in keyof ToBeTestedMORTs_scopedSet]: ToBeTestedMORTs_scopedSet[_K]; }): ToBeTestedMORTs_scopedSet; /** * @summary Getter that returns the default value for `mORTsScope0`. * @public * @static * @method */ static get _default_value_for_mORTsScope0(): Scope; /** * @summary Getter that returns the default value for `mORTsFilter`. * @public * @static * @method */ static get _default_value_for_mORTsFilter(): CMISFilter; } /** * @summary The Leading Root Component Types of ToBeTestedMORTs_scopedSet * @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_ToBeTestedMORTs_scopedSet: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of ToBeTestedMORTs_scopedSet * @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_ToBeTestedMORTs_scopedSet: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of ToBeTestedMORTs_scopedSet * @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_ToBeTestedMORTs_scopedSet: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) ToBeTestedMORTs_scopedSet * @function * @param {_Element} el The element being decoded. * @returns {ToBeTestedMORTs_scopedSet} The decoded data structure. */ export declare function _decode_ToBeTestedMORTs_scopedSet(el: _Element): ToBeTestedMORTs_scopedSet; /** * @summary Encodes a(n) ToBeTestedMORTs_scopedSet 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 ToBeTestedMORTs_scopedSet, encoded as an ASN.1 Element. */ export declare function _encode_ToBeTestedMORTs_scopedSet(value: ToBeTestedMORTs_scopedSet, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ToBeTestedMORTs-scopedSet.ta.d.mts.map