/** * 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. */ /** * * 0 - Unlinked. * * 1 - Balance-holding account that is linked to a remote harvester account. * * 2 - Remote harvester account that is linked to a balance-holding account. * * 3 - Remote harvester eligible account that is unlinked. * * @export */ export declare const AccountTypeEnum: { readonly NUMBER_0: 0; readonly NUMBER_1: 1; readonly NUMBER_2: 2; readonly NUMBER_3: 3; }; export declare type AccountTypeEnum = typeof AccountTypeEnum[keyof typeof AccountTypeEnum]; export declare function instanceOfAccountTypeEnum(value: any): boolean; export declare function AccountTypeEnumFromJSON(json: any): AccountTypeEnum; export declare function AccountTypeEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountTypeEnum; export declare function AccountTypeEnumToJSON(value?: AccountTypeEnum | null): any; export declare function AccountTypeEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): AccountTypeEnum;