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