import { OPTIONAL, GraphicString, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { FunctionalUnitPackage } from '../SMASE-A-ASSOCIATE-Information/FunctionalUnitPackage.ta.mjs'; import { Reason } from '../SMASE-A-ASSOCIATE-Information/Reason.ta.mjs'; /** * @summary SMASEUserData * @description * * ### ASN.1 Definition: * * ```asn1 * SMASEUserData ::= SEQUENCE { * smfuPackages SET OF FunctionalUnitPackage OPTIONAL, * -- shall be present on request/indication if SMFU * -- negotiation is proposed and on response/confirm * -- if SMFU negotiation is accepted, otherwise this * -- parameter shall be omitted. * reason Reason OPTIONAL, * -- may only be present on A-ASSOCIATE response/confirm. * -- When SMFU negotiation fails, when SMFU negotiation * -- results in a reduction of the proposed set of SMFUs * -- or when the association request is rejected, it may * -- carry a specific reason for this. * systemsManagementUserInformation GraphicString OPTIONAL * -- this parameter is provided solely for the convenience * -- of implementations needing to distinguish between * -- different implementation environments, it shall not * -- be the subject of conformance test * } * ``` * */ export declare class SMASEUserData { /** * @summary `smfuPackages`. * @public * @readonly */ readonly smfuPackages?: OPTIONAL; /** * @summary `reason`. * @public * @readonly */ readonly reason?: OPTIONAL; /** * @summary `systemsManagementUserInformation`. * @public * @readonly */ readonly systemsManagementUserInformation?: OPTIONAL; constructor( /** * @summary `smfuPackages`. * @public * @readonly */ smfuPackages?: OPTIONAL, /** * @summary `reason`. * @public * @readonly */ reason?: OPTIONAL, /** * @summary `systemsManagementUserInformation`. * @public * @readonly */ systemsManagementUserInformation?: OPTIONAL); /** * @summary Restructures an object into a SMASEUserData * @description * * This takes an `object` and converts it to a `SMASEUserData`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `SMASEUserData`. * @returns {SMASEUserData} */ static _from_object(_o: { [_K in keyof SMASEUserData]: SMASEUserData[_K]; }): SMASEUserData; } /** * @summary The Leading Root Component Types of SMASEUserData * @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_SMASEUserData: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of SMASEUserData * @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_SMASEUserData: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of SMASEUserData * @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_SMASEUserData: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) SMASEUserData * @function * @param {_Element} el The element being decoded. * @returns {SMASEUserData} The decoded data structure. */ export declare function _decode_SMASEUserData(el: _Element): SMASEUserData; /** * @summary Encodes a(n) SMASEUserData 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 SMASEUserData, encoded as an ASN.1 Element. */ export declare function _encode_SMASEUserData(value: SMASEUserData, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=SMASEUserData.ta.d.mts.map