import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ObjectInstance } from '@wildboar/cmip'; import { NotificationCause } from '../UsageMeteringFunction/NotificationCause.ta.mjs'; import { UsageInfo } from '../UsageMeteringDataInfo/UsageInfo.ta.mjs'; import { AuditInfo } from '../UsageMeteringFunction/AuditInfo.ta.mjs'; import { DataErrors } from '../UsageMeteringFunction/DataErrors.ta.mjs'; import { ProviderId } from '../UsageMeteringFunction/ProviderId.ta.mjs'; import { ManagementExtension } from '@wildboar/attribute-asn1module'; /** * @summary UsageDataInfo * @description * * ### ASN.1 Definition: * * ```asn1 * UsageDataInfo ::= SEQUENCE { * accountableObjectReference [0] ObjectInstance, * notificationCause [1] NotificationCause, * usageInfo [2] UsageInfo, * auditInfo [3] AuditInfo OPTIONAL, * dataErrors [4] DataErrors, * providerId [5] ProviderId OPTIONAL, * additionalInformation [6] SET OF ManagementExtension OPTIONAL * } * ``` * */ export declare class UsageDataInfo { /** * @summary `accountableObjectReference`. * @public * @readonly */ readonly accountableObjectReference: ObjectInstance; /** * @summary `notificationCause`. * @public * @readonly */ readonly notificationCause: NotificationCause; /** * @summary `usageInfo`. * @public * @readonly */ readonly usageInfo: UsageInfo; /** * @summary `auditInfo`. * @public * @readonly */ readonly auditInfo: OPTIONAL; /** * @summary `dataErrors`. * @public * @readonly */ readonly dataErrors: DataErrors; /** * @summary `providerId`. * @public * @readonly */ readonly providerId?: OPTIONAL; /** * @summary `additionalInformation`. * @public * @readonly */ readonly additionalInformation?: OPTIONAL; constructor( /** * @summary `accountableObjectReference`. * @public * @readonly */ accountableObjectReference: ObjectInstance, /** * @summary `notificationCause`. * @public * @readonly */ notificationCause: NotificationCause, /** * @summary `usageInfo`. * @public * @readonly */ usageInfo: UsageInfo, /** * @summary `auditInfo`. * @public * @readonly */ auditInfo: OPTIONAL, /** * @summary `dataErrors`. * @public * @readonly */ dataErrors: DataErrors, /** * @summary `providerId`. * @public * @readonly */ providerId?: OPTIONAL, /** * @summary `additionalInformation`. * @public * @readonly */ additionalInformation?: OPTIONAL); /** * @summary Restructures an object into a UsageDataInfo * @description * * This takes an `object` and converts it to a `UsageDataInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `UsageDataInfo`. * @returns {UsageDataInfo} */ static _from_object(_o: { [_K in keyof UsageDataInfo]: UsageDataInfo[_K]; }): UsageDataInfo; } /** * @summary The Leading Root Component Types of UsageDataInfo * @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_UsageDataInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of UsageDataInfo * @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_UsageDataInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of UsageDataInfo * @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_UsageDataInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) UsageDataInfo * @function * @param {_Element} el The element being decoded. * @returns {UsageDataInfo} The decoded data structure. */ export declare function _decode_UsageDataInfo(el: _Element): UsageDataInfo; /** * @summary Encodes a(n) UsageDataInfo 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 UsageDataInfo, encoded as an ASN.1 Element. */ export declare function _encode_UsageDataInfo(value: UsageDataInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=UsageDataInfo.ta.d.mts.map