/** * Nominex TMA API * API config for Nominex TMA * * The version of the OpenAPI document: 0.0.17 * * * 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 TradeFarmingStatus: { readonly IDLE: "IDLE"; readonly FARMING: "FARMING"; readonly CLAIMING: "CLAIMING"; }; export type TradeFarmingStatus = typeof TradeFarmingStatus[keyof typeof TradeFarmingStatus]; export declare function TradeFarmingStatusFromJSON(json: any): TradeFarmingStatus; export declare function TradeFarmingStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): TradeFarmingStatus; export declare function TradeFarmingStatusToJSON(value?: TradeFarmingStatus | null): any;