import { OPTIONAL, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { TestInvocationId } from '../Test-ASN1Module/TestInvocationId.ta.mjs'; import { TestSessionId } from '../Test-ASN1Module/TestSessionId.ta.mjs'; import { StartTime } from '@wildboar/attribute-asn1module'; import { EndTime } from '../Test-ASN1Module/EndTime.ta.mjs'; import { ActualStartTime } from '../Test-ASN1Module/ActualStartTime.ta.mjs'; import { ActualStopTime } from '../Test-ASN1Module/ActualStopTime.ta.mjs'; import { AdditionalText } from '@wildboar/attribute-asn1module'; import { AdditionalInformation } from '@wildboar/attribute-asn1module'; /** * @summary SchedulingConflictInfo * @description * * ### ASN.1 Definition: * * ```asn1 * SchedulingConflictInfo ::= SEQUENCE { * testInvocationId TestInvocationId, * testSessionId [1] TestSessionId OPTIONAL, * startTime StartTime, * endTime EndTime, * actualStartTime ActualStartTime, * actualStopTime ActualStopTime, * additionalText [6] AdditionalText OPTIONAL, * additionalInformation [7] AdditionalInformation OPTIONAL * } * ``` * */ export declare class SchedulingConflictInfo { /** * @summary `testInvocationId`. * @public * @readonly */ readonly testInvocationId: TestInvocationId; /** * @summary `testSessionId`. * @public * @readonly */ readonly testSessionId: OPTIONAL; /** * @summary `startTime`. * @public * @readonly */ readonly startTime: StartTime; /** * @summary `endTime`. * @public * @readonly */ readonly endTime: EndTime; /** * @summary `actualStartTime`. * @public * @readonly */ readonly actualStartTime: ActualStartTime; /** * @summary `actualStopTime`. * @public * @readonly */ readonly actualStopTime: ActualStopTime; /** * @summary `additionalText`. * @public * @readonly */ readonly additionalText?: OPTIONAL; /** * @summary `additionalInformation`. * @public * @readonly */ readonly additionalInformation?: OPTIONAL; constructor( /** * @summary `testInvocationId`. * @public * @readonly */ testInvocationId: TestInvocationId, /** * @summary `testSessionId`. * @public * @readonly */ testSessionId: OPTIONAL, /** * @summary `startTime`. * @public * @readonly */ startTime: StartTime, /** * @summary `endTime`. * @public * @readonly */ endTime: EndTime, /** * @summary `actualStartTime`. * @public * @readonly */ actualStartTime: ActualStartTime, /** * @summary `actualStopTime`. * @public * @readonly */ actualStopTime: ActualStopTime, /** * @summary `additionalText`. * @public * @readonly */ additionalText?: OPTIONAL, /** * @summary `additionalInformation`. * @public * @readonly */ additionalInformation?: OPTIONAL); /** * @summary Restructures an object into a SchedulingConflictInfo * @description * * This takes an `object` and converts it to a `SchedulingConflictInfo`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `SchedulingConflictInfo`. * @returns {SchedulingConflictInfo} */ static _from_object(_o: { [_K in keyof SchedulingConflictInfo]: SchedulingConflictInfo[_K]; }): SchedulingConflictInfo; } /** * @summary The Leading Root Component Types of SchedulingConflictInfo * @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_SchedulingConflictInfo: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of SchedulingConflictInfo * @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_SchedulingConflictInfo: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of SchedulingConflictInfo * @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_SchedulingConflictInfo: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) SchedulingConflictInfo * @function * @param {_Element} el The element being decoded. * @returns {SchedulingConflictInfo} The decoded data structure. */ export declare function _decode_SchedulingConflictInfo(el: _Element): SchedulingConflictInfo; /** * @summary Encodes a(n) SchedulingConflictInfo 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 SchedulingConflictInfo, encoded as an ASN.1 Element. */ export declare function _encode_SchedulingConflictInfo(value: SchedulingConflictInfo, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=SchedulingConflictInfo.ta.d.mts.map