import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { ChainingArguments } from "../DistributedOperations/ChainingArguments.ta.mjs"; /** * @summary Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1 * @description * * ### ASN.1 Definition: * * ```asn1 * Chained-ArgumentType-OPTIONALLY-PROTECTED-Parameter1 {OPERATION:operation} ::= SET { * chainedArgument ChainingArguments, * argument [0] operation.&ArgumentType } * ``` * */ export declare class Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1 { /** * @summary `chainedArgument`. * @public * @readonly */ readonly chainedArgument: ChainingArguments; /** * @summary `argument`. * @public * @readonly */ readonly argument: _Element; constructor( /** * @summary `chainedArgument`. * @public * @readonly */ chainedArgument: ChainingArguments, /** * @summary `argument`. * @public * @readonly */ argument: _Element); /** * @summary Restructures an object into a Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1 * @description * * This takes an `object` and converts it to a `Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1`. * @returns {Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1} */ static _from_object(_o: Partial<{ [_K in keyof Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1]: Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1[_K]; }>): Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1; } /** * @summary The Leading Root Component Types of Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1 * @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_Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1 * @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_Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1 * @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_Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1 * @function * @param {_Element} el The element being decoded. * @returns {Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1} The decoded data structure. */ export declare function _decode_Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1(el: _Element): Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1; /** * @summary Encodes a(n) Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1 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 Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1, encoded as an ASN.1 Element. */ export declare function _encode_Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1(value: Chained_ArgumentType_OPTIONALLY_PROTECTED_Parameter1, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=Chained-ArgumentType-OPTIONALLY-PROTECTED-Parameter1.ta.d.mts.map