import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ObjectInstance } from '@wildboar/cmip'; import { OptionalObject } from '../ChangeOverASN1Productions/OptionalObject.ta.mjs'; import { ExpectedAttributeList } from '../ChangeOverASN1Productions/ExpectedAttributeList.ta.mjs'; /** * @summary ChangeBackInfo * @description * * ### ASN.1 Definition: * * ```asn1 * ChangeBackInfo ::= SEQUENCE { * backedUpObject [0] ObjectInstance, * backUpObject [1] OptionalObject DEFAULT noObject:NULL, * backedUpObjectChanges [2] IMPLICIT ExpectedAttributeList OPTIONAL, * backUpObjectChanges [3] IMPLICIT ExpectedAttributeList OPTIONAL * } * ``` * */ export declare class ChangeBackInfo { /** * @summary `backedUpObject`. * @public * @readonly */ readonly backedUpObject: ObjectInstance; /** * @summary `backUpObject`. * @public * @readonly */ readonly backUpObject?: OPTIONAL; /** * @summary `backedUpObjectChanges`. * @public * @readonly */ readonly backedUpObjectChanges?: OPTIONAL; /** * @summary `backUpObjectChanges`. * @public * @readonly */ readonly backUpObjectChanges?: OPTIONAL; constructor( /** * @summary `backedUpObject`. * @public * @readonly */ backedUpObject: ObjectInstance, /** * @summary `backUpObject`. * @public * @readonly */ backUpObject?: OPTIONAL, /** * @summary `backedUpObjectChanges`. * @public * @readonly */ backedUpObjectChanges?: OPTIONAL, /** * @summary `backUpObjectChanges`. * @public * @readonly */ backUpObjectChanges?: OPTIONAL); /** * @summary Restructures an object into a ChangeBackInfo * @description * * This takes an `object` and converts it to a `ChangeBackInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `ChangeBackInfo`. * @returns {ChangeBackInfo} */ static _from_object(_o: { [_K in keyof ChangeBackInfo]: ChangeBackInfo[_K]; }): ChangeBackInfo; /** * @summary Getter that returns the default value for `backUpObject`. * @public * @static * @method */ static get _default_value_for_backUpObject(): OptionalObject; } /** * @summary The Leading Root Component Types of ChangeBackInfo * @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_ChangeBackInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of ChangeBackInfo * @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_ChangeBackInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of ChangeBackInfo * @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_ChangeBackInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) ChangeBackInfo * @function * @param {_Element} el The element being decoded. * @returns {ChangeBackInfo} The decoded data structure. */ export declare function _decode_ChangeBackInfo(el: _Element): ChangeBackInfo; /** * @summary Encodes a(n) ChangeBackInfo 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 ChangeBackInfo, encoded as an ASN.1 Element. */ export declare function _encode_ChangeBackInfo(value: ChangeBackInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ChangeBackInfo.ta.d.mts.map