import * as $ from '@wildboar/asn1/functional'; import { ErrorId } from '../Schedulerev1-ASN1Module/ErrorId.ta.mjs'; /** * @summary SCHED_ERROR * @description * * ### ASN.1 Definition: * * ```asn1 * SCHED-ERROR ::= CLASS {&id ErrorId UNIQUE, * &Value * } * ``` * * @interface */ export interface SCHED_ERROR { /** * @summary A fixed string that can be used for external programs to determine the object class of this object. */ readonly class: 'SCHED-ERROR'; /** * @summary A map of type fields to their corresponding decoders. */ readonly decoderFor: Partial<{ [_K in keyof SCHED_ERROR]: $.ASN1Decoder[_K]>; }>; /** * @summary A map of type fields to their corresponding encoders. */ readonly encoderFor: Partial<{ [_K in keyof SCHED_ERROR]: $.ASN1Encoder[_K]>; }>; /** * @summary &id */ readonly '&id'?: ErrorId; /** * @summary &Value */ readonly '&Value': Value; } //# sourceMappingURL=SCHED-ERROR.oca.d.mts.map