import { OBJECT_IDENTIFIER, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary TransferInfo * @description * * ### ASN.1 Definition: * * ```asn1 * TransferInfo ::= SEQUENCE { * transferProtocol SWMF-TRANSFER.&id({TransferInfoSet}), * protocolSpecificInfo * SWMF-TRANSFER.&Value({TransferInfoSet}{@.transferProtocol}) * } * ``` * */ export declare class TransferInfo { /** * @summary `transferProtocol`. * @public * @readonly */ readonly transferProtocol: OBJECT_IDENTIFIER; /** * @summary `protocolSpecificInfo`. * @public * @readonly */ readonly protocolSpecificInfo: _Element; constructor( /** * @summary `transferProtocol`. * @public * @readonly */ transferProtocol: OBJECT_IDENTIFIER, /** * @summary `protocolSpecificInfo`. * @public * @readonly */ protocolSpecificInfo: _Element); /** * @summary Restructures an object into a TransferInfo * @description * * This takes an `object` and converts it to a `TransferInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `TransferInfo`. * @returns {TransferInfo} */ static _from_object(_o: { [_K in keyof TransferInfo]: TransferInfo[_K]; }): TransferInfo; } /** * @summary The Leading Root Component Types of TransferInfo * @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_TransferInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of TransferInfo * @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_TransferInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of TransferInfo * @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_TransferInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) TransferInfo * @function * @param {_Element} el The element being decoded. * @returns {TransferInfo} The decoded data structure. */ export declare function _decode_TransferInfo(el: _Element): TransferInfo; /** * @summary Encodes a(n) TransferInfo 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 TransferInfo, encoded as an ASN.1 Element. */ export declare function _encode_TransferInfo(value: TransferInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=TransferInfo.ta.d.mts.map