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