import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { PDUSequence } from '../TestCategories-ASN1Module/PDUSequence.ta.mjs'; import { PDUReception } from '../TestCategories-ASN1Module/PDUReception.ta.mjs'; import { WaitingInterval } from '../TestCategories-ASN1Module/WaitingInterval.ta.mjs'; import { StartTime } from '@wildboar/attribute-asn1module'; import { StopTime } from '@wildboar/attribute-asn1module'; /** * @summary ProtocolIntegrityTestInfo * @description * * ### ASN.1 Definition: * * ```asn1 * ProtocolIntegrityTestInfo ::= SEQUENCE { -- This ProtocolIntegrityTestInfo is optional. * pDUSequence [0] PDUSequence, * pDUReception [1] PDUReception OPTIONAL, -- one, and only one, of the pDUReception * waitingInterval [2] WaitingInterval OPTIONAL, -- and the waitingInterval shall be present * startTime [3] StartTime OPTIONAL, * stopTime [4] StopTime OPTIONAL * } * ``` * */ export declare class ProtocolIntegrityTestInfo { /** * @summary `pDUSequence`. * @public * @readonly */ readonly pDUSequence: PDUSequence; /** * @summary `pDUReception`. * @public * @readonly */ readonly pDUReception?: OPTIONAL; /** * @summary `waitingInterval`. * @public * @readonly */ readonly waitingInterval?: OPTIONAL; /** * @summary `startTime`. * @public * @readonly */ readonly startTime?: OPTIONAL; /** * @summary `stopTime`. * @public * @readonly */ readonly stopTime?: OPTIONAL; constructor( /** * @summary `pDUSequence`. * @public * @readonly */ pDUSequence: PDUSequence, /** * @summary `pDUReception`. * @public * @readonly */ pDUReception?: OPTIONAL, /** * @summary `waitingInterval`. * @public * @readonly */ waitingInterval?: OPTIONAL, /** * @summary `startTime`. * @public * @readonly */ startTime?: OPTIONAL, /** * @summary `stopTime`. * @public * @readonly */ stopTime?: OPTIONAL); /** * @summary Restructures an object into a ProtocolIntegrityTestInfo * @description * * This takes an `object` and converts it to a `ProtocolIntegrityTestInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `ProtocolIntegrityTestInfo`. * @returns {ProtocolIntegrityTestInfo} */ static _from_object(_o: { [_K in keyof ProtocolIntegrityTestInfo]: ProtocolIntegrityTestInfo[_K]; }): ProtocolIntegrityTestInfo; } /** * @summary The Leading Root Component Types of ProtocolIntegrityTestInfo * @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_ProtocolIntegrityTestInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of ProtocolIntegrityTestInfo * @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_ProtocolIntegrityTestInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of ProtocolIntegrityTestInfo * @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_ProtocolIntegrityTestInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) ProtocolIntegrityTestInfo * @function * @param {_Element} el The element being decoded. * @returns {ProtocolIntegrityTestInfo} The decoded data structure. */ export declare function _decode_ProtocolIntegrityTestInfo(el: _Element): ProtocolIntegrityTestInfo; /** * @summary Encodes a(n) ProtocolIntegrityTestInfo 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 ProtocolIntegrityTestInfo, encoded as an ASN.1 Element. */ export declare function _encode_ProtocolIntegrityTestInfo(value: ProtocolIntegrityTestInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ProtocolIntegrityTestInfo.ta.d.mts.map