import { OBJECT_IDENTIFIER } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary INFO_REPLY_IDENTIFIER * @description * * ### ASN.1 Definition: * * ```asn1 * INFO-REPLY-IDENTIFIER ::= CLASS { * &Info OPTIONAL, * &Reply OPTIONAL, * ®isteredAs OBJECT IDENTIFIER UNIQUE * }WITH SYNTAX {INFO &Info * REPLY &Reply * IDENTIFIED BY ®isteredAs * } * ``` * * @interface */ export interface INFO_REPLY_IDENTIFIER { /** * @summary A fixed string that can be used for external programs to determine the object class of this object. */ readonly class: 'INFO-REPLY-IDENTIFIER'; /** * @summary A map of type fields to their corresponding decoders. */ readonly decoderFor: Partial<{ [_K in keyof INFO_REPLY_IDENTIFIER]: $.ASN1Decoder[_K]>; }>; /** * @summary A map of type fields to their corresponding encoders. */ readonly encoderFor: Partial<{ [_K in keyof INFO_REPLY_IDENTIFIER]: $.ASN1Encoder[_K]>; }>; /** * @summary &Info */ readonly '&Info': Info; /** * @summary &Reply */ readonly '&Reply': Reply; /** * @summary ®isteredAs */ readonly '®isteredAs'?: OBJECT_IDENTIFIER; } //# sourceMappingURL=INFO-REPLY-IDENTIFIER.oca.d.mts.map