import { INTEGER } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary EXTENSION_ATTRIBUTE * @description * * ### ASN.1 Definition: * * ```asn1 * EXTENSION-ATTRIBUTE ::= CLASS { * &id INTEGER(0..ub-extension-attributes) UNIQUE, * &Type * }WITH SYNTAX {&Type * IDENTIFIED BY &id * } * ``` * * @interface */ export interface EXTENSION_ATTRIBUTE { /** * @summary A fixed string that can be used for external programs to determine the object class of this object. */ readonly class: "EXTENSION-ATTRIBUTE"; /** * @summary A map of type fields to their corresponding decoders. */ readonly decoderFor: Partial<{ [_K in keyof EXTENSION_ATTRIBUTE]: $.ASN1Decoder[_K]>; }>; /** * @summary A map of type fields to their corresponding encoders. */ readonly encoderFor: Partial<{ [_K in keyof EXTENSION_ATTRIBUTE]: $.ASN1Encoder[_K]>; }>; /** * @summary &id */ readonly "&id"?: INTEGER; /** * @summary &Type */ readonly "&Type": Type; } //# sourceMappingURL=EXTENSION-ATTRIBUTE.oca.d.mts.map