import { ASN1Element as _Element, BOOLEAN, INTEGER, OPTIONAL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { SortKey } from "../DirectoryAbstractService/SortKey.ta.mjs"; /** * @summary PagedResultsRequest_newRequest * @description * * ### ASN.1 Definition: * * ```asn1 * PagedResultsRequest-newRequest ::= SEQUENCE { -- REMOVED_FROM_UNNESTING -- } * ``` * */ export declare class PagedResultsRequest_newRequest { /** * @summary `pageSize`. * @public * @readonly */ readonly pageSize: INTEGER; /** * @summary `sortKeys`. * @public * @readonly */ readonly sortKeys?: OPTIONAL; /** * @summary `reverse`. * @public * @readonly */ readonly reverse?: OPTIONAL; /** * @summary `unmerged`. * @public * @readonly */ readonly unmerged?: OPTIONAL; /** * @summary `pageNumber`. * @public * @readonly */ readonly pageNumber?: OPTIONAL; /** * @summary Extensions that are not recognized. * @public * @readonly */ readonly _unrecognizedExtensionsList: _Element[]; constructor( /** * @summary `pageSize`. * @public * @readonly */ pageSize: INTEGER, /** * @summary `sortKeys`. * @public * @readonly */ sortKeys?: OPTIONAL, /** * @summary `reverse`. * @public * @readonly */ reverse?: OPTIONAL, /** * @summary `unmerged`. * @public * @readonly */ unmerged?: OPTIONAL, /** * @summary `pageNumber`. * @public * @readonly */ pageNumber?: OPTIONAL, /** * @summary Extensions that are not recognized. * @public * @readonly */ _unrecognizedExtensionsList?: _Element[]); /** * @summary Restructures an object into a PagedResultsRequest_newRequest * @description * * This takes an `object` and converts it to a `PagedResultsRequest_newRequest`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `PagedResultsRequest_newRequest`. * @returns {PagedResultsRequest_newRequest} */ static _from_object(_o: Partial<{ [_K in keyof PagedResultsRequest_newRequest]: PagedResultsRequest_newRequest[_K]; }>): PagedResultsRequest_newRequest; /** * @summary Getter that returns the default value for `reverse`. * @public * @static * @method */ static get _default_value_for_reverse(): BOOLEAN; /** * @summary Getter that returns the default value for `unmerged`. * @public * @static * @method */ static get _default_value_for_unmerged(): BOOLEAN; } /** * @summary The Leading Root Component Types of PagedResultsRequest_newRequest * @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_PagedResultsRequest_newRequest: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of PagedResultsRequest_newRequest * @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_PagedResultsRequest_newRequest: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of PagedResultsRequest_newRequest * @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_PagedResultsRequest_newRequest: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) PagedResultsRequest_newRequest * @function * @param {_Element} el The element being decoded. * @returns {PagedResultsRequest_newRequest} The decoded data structure. */ export declare function _decode_PagedResultsRequest_newRequest(el: _Element): PagedResultsRequest_newRequest; /** * @summary Encodes a(n) PagedResultsRequest_newRequest 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 PagedResultsRequest_newRequest, encoded as an ASN.1 Element. */ export declare function _encode_PagedResultsRequest_newRequest(value: PagedResultsRequest_newRequest, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=PagedResultsRequest-newRequest.ta.d.mts.map