import { ASN1Element as _Element, OPTIONAL } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { OsiBindResult_normal_mode_parameters_pres_context_result_list_Item } from "../OSIProtocolSpecification/OsiBindResult-normal-mode-parameters-pres-context-result-list-Item.ta.mjs"; import { OsiBindResult_normal_mode_parameters_protocol_version } from "../OSIProtocolSpecification/OsiBindResult-normal-mode-parameters-protocol-version.ta.mjs"; import { OsiBindResult_normal_mode_parameters_user_data } from "../OSIProtocolSpecification/OsiBindResult-normal-mode-parameters-user-data.ta.mjs"; import { Presentation_selector } from "../OSIProtocolSpecification/Presentation-selector.ta.mjs"; /** * @summary OsiBindResult_normal_mode_parameters * @description * * ### ASN.1 Definition: * * ```asn1 * OsiBindResult-normal-mode-parameters ::= SEQUENCE { -- REMOVED_FROM_UNNESTING -- } * ``` * */ export declare class OsiBindResult_normal_mode_parameters { /** * @summary `protocol_version`. * @public * @readonly */ readonly protocol_version: OPTIONAL; /** * @summary `responding_presentation_selector`. * @public * @readonly */ readonly responding_presentation_selector: OPTIONAL; /** * @summary `pres_context_result_list`. * @public * @readonly */ readonly pres_context_result_list: OsiBindResult_normal_mode_parameters_pres_context_result_list_Item[]; /** * @summary `user_data`. * @public * @readonly */ readonly user_data: OsiBindResult_normal_mode_parameters_user_data; constructor( /** * @summary `protocol_version`. * @public * @readonly */ protocol_version: OPTIONAL, /** * @summary `responding_presentation_selector`. * @public * @readonly */ responding_presentation_selector: OPTIONAL, /** * @summary `pres_context_result_list`. * @public * @readonly */ pres_context_result_list: OsiBindResult_normal_mode_parameters_pres_context_result_list_Item[], /** * @summary `user_data`. * @public * @readonly */ user_data: OsiBindResult_normal_mode_parameters_user_data); /** * @summary Restructures an object into a OsiBindResult_normal_mode_parameters * @description * * This takes an `object` and converts it to a `OsiBindResult_normal_mode_parameters`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `OsiBindResult_normal_mode_parameters`. * @returns {OsiBindResult_normal_mode_parameters} */ static _from_object(_o: { [_K in keyof OsiBindResult_normal_mode_parameters]: OsiBindResult_normal_mode_parameters[_K]; }): OsiBindResult_normal_mode_parameters; /** * @summary Getter that returns the default value for `protocol_version`. * @public * @static * @method */ static get _default_value_for_protocol_version(): OsiBindResult_normal_mode_parameters_protocol_version; } /** * @summary The Leading Root Component Types of OsiBindResult_normal_mode_parameters * @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_OsiBindResult_normal_mode_parameters: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of OsiBindResult_normal_mode_parameters * @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_OsiBindResult_normal_mode_parameters: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of OsiBindResult_normal_mode_parameters * @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_OsiBindResult_normal_mode_parameters: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) OsiBindResult_normal_mode_parameters * @function * @param {_Element} el The element being decoded. * @returns {OsiBindResult_normal_mode_parameters} The decoded data structure. */ export declare function _decode_OsiBindResult_normal_mode_parameters(el: _Element): OsiBindResult_normal_mode_parameters; /** * @summary Encodes a(n) OsiBindResult_normal_mode_parameters 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 OsiBindResult_normal_mode_parameters, encoded as an ASN.1 Element. */ export declare function _encode_OsiBindResult_normal_mode_parameters(value: OsiBindResult_normal_mode_parameters, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=OsiBindResult-normal-mode-parameters.ta.d.mts.map