@wildboar/copp
Version:
Connection-oriented presentation protocol (COPP) data structures and business logic in TypeScript
52 lines • 1.19 kB
text/typescript
import { INTEGER } from '@wildboar/asn1';
import * as $ from '@wildboar/asn1/functional';
/**
* @summary Result
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* Result ::= INTEGER {acceptance(0), user-rejection(1), provider-rejection(2)}
* ```
*/
export type Result = INTEGER;
/**
* @summary Result_acceptance
* @constant
* @type {number}
*/
export declare const Result_acceptance: Result;
/**
* @summary Result_acceptance
* @constant
* @type {number}
*/
export declare const acceptance: Result;
/**
* @summary Result_user_rejection
* @constant
* @type {number}
*/
export declare const Result_user_rejection: Result;
/**
* @summary Result_user_rejection
* @constant
* @type {number}
*/
export declare const user_rejection: Result;
/**
* @summary Result_provider_rejection
* @constant
* @type {number}
*/
export declare const Result_provider_rejection: Result;
/**
* @summary Result_provider_rejection
* @constant
* @type {number}
*/
export declare const provider_rejection: Result;
export declare const _decode_Result: $.ASN1Decoder<INTEGER>;
export declare const _encode_Result: $.ASN1Encoder<INTEGER>;
//# sourceMappingURL=Result.ta.d.mts.map