/** * 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. */ /** * * @export */ export declare const AccountOrderByEnum: { readonly Id: "id"; readonly Balance: "balance"; }; export declare type AccountOrderByEnum = typeof AccountOrderByEnum[keyof typeof AccountOrderByEnum]; export declare function instanceOfAccountOrderByEnum(value: any): boolean; export declare function AccountOrderByEnumFromJSON(json: any): AccountOrderByEnum; export declare function AccountOrderByEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccountOrderByEnum; export declare function AccountOrderByEnumToJSON(value?: AccountOrderByEnum | null): any; export declare function AccountOrderByEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): AccountOrderByEnum;