/** * Catapult REST Endpoints * OpenAPI Specification of catapult-rest * * The version of the OpenAPI document: 1.0.4 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Type of account key: * * 0 - Unset. * * 1 - Linked account public key. * * 2 - Node public key on which remote is allowed to harvest. * * 4 - VRF public key. * * @export */ export declare const AccountKeyTypeFlagsEnum: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; readonly NUMBER_2: 2; readonly NUMBER_4: 4; }; export declare type AccountKeyTypeFlagsEnum = typeof AccountKeyTypeFlagsEnum[keyof typeof AccountKeyTypeFlagsEnum]; export declare function instanceOfAccountKeyTypeFlagsEnum(value: any): boolean; export declare function AccountKeyTypeFlagsEnumFromJSON(json: any): AccountKeyTypeFlagsEnum; export declare function AccountKeyTypeFlagsEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountKeyTypeFlagsEnum; export declare function AccountKeyTypeFlagsEnumToJSON(value?: AccountKeyTypeFlagsEnum | null): any; export declare function AccountKeyTypeFlagsEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): AccountKeyTypeFlagsEnum;