import { OBJECT_IDENTIFIER } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { type OPERATION } from "../CommonProtocolSpecification/OPERATION.oca.mjs"; /** * @summary IDM_PROTOCOL * @description * * ### ASN.1 Definition: * * ```asn1 * IDM-PROTOCOL ::= CLASS { * &bind-operation OPERATION, * &Operations OPERATION, * &id OBJECT IDENTIFIER UNIQUE } * WITH SYNTAX { * BIND-OPERATION &bind-operation * OPERATIONS &Operations * ID &id } * ``` * * @interface */ export interface IDM_PROTOCOL { /** * @summary A fixed string that can be used for external programs to determine the object class of this object. */ readonly class: "IDM-PROTOCOL"; /** * @summary A map of type fields to their corresponding decoders. */ readonly decoderFor: Partial<{ [_K in keyof IDM_PROTOCOL]: $.ASN1Decoder; }>; /** * @summary A map of type fields to their corresponding encoders. */ readonly encoderFor: Partial<{ [_K in keyof IDM_PROTOCOL]: $.ASN1Encoder; }>; /** * @summary &bind-operation */ readonly "&bind-operation"?: OPERATION; /** * @summary &Operations */ readonly "&Operations"?: OPERATION[]; /** * @summary &id */ readonly "&id"?: OBJECT_IDENTIFIER; } //# sourceMappingURL=IDM-PROTOCOL.oca.d.mts.map