import { ASN1Element as _Element, BOOLEAN, OCTET_STRING, OPTIONAL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { Filter } from "../DirectoryAbstractService/Filter.ta.mjs"; import { LimitProblem } from "../DirectoryAbstractService/LimitProblem.ta.mjs"; import { PartialOutcomeQualifier_entryCount } from "../DirectoryAbstractService/PartialOutcomeQualifier-entryCount.ta.mjs"; import { ContinuationReference } from "../DistributedOperations/ContinuationReference.ta.mjs"; import { Attribute } from "../InformationFramework/Attribute.ta.mjs"; /** * @summary PartialOutcomeQualifier * @description * * ### ASN.1 Definition: * * ```asn1 * PartialOutcomeQualifier ::= SET { * limitProblem [0] LimitProblem OPTIONAL, * unexplored [1] SET SIZE (1..MAX) OF ContinuationReference OPTIONAL, * unavailableCriticalExtensions [2] BOOLEAN DEFAULT FALSE, * unknownErrors [3] SET SIZE (1..MAX) OF ABSTRACT-SYNTAX.&Type OPTIONAL, * queryReference [4] OCTET STRING OPTIONAL, * overspecFilter [5] Filter OPTIONAL, * notification [6] SEQUENCE SIZE (1..MAX) OF * Attribute{{SupportedAttributes}} OPTIONAL, * entryCount CHOICE { * bestEstimate [7] INTEGER, * lowEstimate [8] INTEGER, * exact [9] INTEGER, * ...} OPTIONAL * -- [10] Not to be used -- } * ``` * */ export declare class PartialOutcomeQualifier { /** * @summary `limitProblem`. * @public * @readonly */ readonly limitProblem?: OPTIONAL; /** * @summary `unexplored`. * @public * @readonly */ readonly unexplored?: OPTIONAL; /** * @summary `unavailableCriticalExtensions`. * @public * @readonly */ readonly unavailableCriticalExtensions?: OPTIONAL; /** * @summary `unknownErrors`. * @public * @readonly */ readonly unknownErrors?: OPTIONAL<_Element[]>; /** * @summary `queryReference`. * @public * @readonly */ readonly queryReference?: OPTIONAL; /** * @summary `overspecFilter`. * @public * @readonly */ readonly overspecFilter?: OPTIONAL; /** * @summary `notification`. * @public * @readonly */ readonly notification?: OPTIONAL; /** * @summary `entryCount`. * @public * @readonly */ readonly entryCount?: OPTIONAL; constructor( /** * @summary `limitProblem`. * @public * @readonly */ limitProblem?: OPTIONAL, /** * @summary `unexplored`. * @public * @readonly */ unexplored?: OPTIONAL, /** * @summary `unavailableCriticalExtensions`. * @public * @readonly */ unavailableCriticalExtensions?: OPTIONAL, /** * @summary `unknownErrors`. * @public * @readonly */ unknownErrors?: OPTIONAL<_Element[]>, /** * @summary `queryReference`. * @public * @readonly */ queryReference?: OPTIONAL, /** * @summary `overspecFilter`. * @public * @readonly */ overspecFilter?: OPTIONAL, /** * @summary `notification`. * @public * @readonly */ notification?: OPTIONAL, /** * @summary `entryCount`. * @public * @readonly */ entryCount?: OPTIONAL); /** * @summary Restructures an object into a PartialOutcomeQualifier * @description * * This takes an `object` and converts it to a `PartialOutcomeQualifier`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `PartialOutcomeQualifier`. * @returns {PartialOutcomeQualifier} */ static _from_object(_o: Partial<{ [_K in keyof PartialOutcomeQualifier]: PartialOutcomeQualifier[_K]; }>): PartialOutcomeQualifier; /** * @summary Getter that returns the default value for `unavailableCriticalExtensions`. * @public * @static * @method */ static get _default_value_for_unavailableCriticalExtensions(): BOOLEAN; } /** * @summary The Leading Root Component Types of PartialOutcomeQualifier * @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_PartialOutcomeQualifier: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of PartialOutcomeQualifier * @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_PartialOutcomeQualifier: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of PartialOutcomeQualifier * @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_PartialOutcomeQualifier: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) PartialOutcomeQualifier * @function * @param {_Element} el The element being decoded. * @returns {PartialOutcomeQualifier} The decoded data structure. */ export declare function _decode_PartialOutcomeQualifier(el: _Element): PartialOutcomeQualifier; /** * @summary Encodes a(n) PartialOutcomeQualifier 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 PartialOutcomeQualifier, encoded as an ASN.1 Element. */ export declare function _encode_PartialOutcomeQualifier(value: PartialOutcomeQualifier, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=PartialOutcomeQualifier.ta.d.mts.map