import { ASN1Element as _Element, BOOLEAN, OPTIONAL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { EntryInformation } from "../DirectoryAbstractService/EntryInformation.ta.mjs"; import { PartialOutcomeQualifier } from "../DirectoryAbstractService/PartialOutcomeQualifier.ta.mjs"; import { SecurityParameters } from "../DirectoryAbstractService/SecurityParameters.ta.mjs"; import { Attribute } from "../InformationFramework/Attribute.ta.mjs"; import { DistinguishedName } from "../InformationFramework/DistinguishedName.ta.mjs"; import { Name } from "../InformationFramework/Name.ta.mjs"; import { CommonResults } from "../DirectoryAbstractService/CommonResults.ta.mjs"; /** * @summary SearchResultData_searchInfo * @description * * ### ASN.1 Definition: * * ```asn1 * SearchResultData-searchInfo ::= SEQUENCE { -- REMOVED_FROM_UNNESTING -- } * ``` * */ export declare class SearchResultData_searchInfo implements CommonResults { /** * @summary `name`. * @public * @readonly */ readonly name: OPTIONAL; /** * @summary `entries`. * @public * @readonly */ readonly entries: EntryInformation[]; /** * @summary `partialOutcomeQualifier`. * @public * @readonly */ readonly partialOutcomeQualifier?: OPTIONAL; /** * @summary `altMatching`. * @public * @readonly */ readonly altMatching?: OPTIONAL; /** * @summary Extensions that are not recognized. * @public * @readonly */ readonly _unrecognizedExtensionsList: _Element[]; /** * @summary `securityParameters`. * @public * @readonly */ readonly securityParameters?: OPTIONAL; /** * @summary `performer`. * @public * @readonly */ readonly performer?: OPTIONAL; /** * @summary `aliasDereferenced`. * @public * @readonly */ readonly aliasDereferenced?: OPTIONAL; /** * @summary `notification`. * @public * @readonly */ readonly notification?: OPTIONAL; constructor( /** * @summary `name`. * @public * @readonly */ name: OPTIONAL, /** * @summary `entries`. * @public * @readonly */ entries: EntryInformation[], /** * @summary `partialOutcomeQualifier`. * @public * @readonly */ partialOutcomeQualifier?: OPTIONAL, /** * @summary `altMatching`. * @public * @readonly */ altMatching?: OPTIONAL, /** * @summary Extensions that are not recognized. * @public * @readonly */ _unrecognizedExtensionsList?: _Element[], /** * @summary `securityParameters`. * @public * @readonly */ securityParameters?: OPTIONAL, /** * @summary `performer`. * @public * @readonly */ performer?: OPTIONAL, /** * @summary `aliasDereferenced`. * @public * @readonly */ aliasDereferenced?: OPTIONAL, /** * @summary `notification`. * @public * @readonly */ notification?: OPTIONAL); /** * @summary Restructures an object into a SearchResultData_searchInfo * @description * * This takes an `object` and converts it to a `SearchResultData_searchInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `SearchResultData_searchInfo`. * @returns {SearchResultData_searchInfo} */ static _from_object(_o: Partial<{ [_K in keyof SearchResultData_searchInfo]: SearchResultData_searchInfo[_K]; }>): SearchResultData_searchInfo; /** * @summary Getter that returns the default value for `altMatching`. * @public * @static * @method */ static get _default_value_for_altMatching(): BOOLEAN; /** * @summary Getter that returns the default value for `aliasDereferenced`. * @public * @static * @method */ static get _default_value_for_aliasDereferenced(): BOOLEAN; } /** * @summary The Leading Root Component Types of SearchResultData_searchInfo * @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_SearchResultData_searchInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of SearchResultData_searchInfo * @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_SearchResultData_searchInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of SearchResultData_searchInfo * @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_SearchResultData_searchInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) SearchResultData_searchInfo * @function * @param {_Element} el The element being decoded. * @returns {SearchResultData_searchInfo} The decoded data structure. */ export declare function _decode_SearchResultData_searchInfo(el: _Element): SearchResultData_searchInfo; /** * @summary Encodes a(n) SearchResultData_searchInfo 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 SearchResultData_searchInfo, encoded as an ASN.1 Element. */ export declare function _encode_SearchResultData_searchInfo(value: SearchResultData_searchInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=SearchResultData-searchInfo.ta.d.mts.map