/** * 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. */ import type { TradeFarmingLevel } from './TradeFarmingLevel'; import type { TradeFarmingStatus } from './TradeFarmingStatus'; /** * * @export * @interface TradeFarmingInformation */ export interface TradeFarmingInformation { /** * * @type {TradeFarmingStatus} * @memberof TradeFarmingInformation */ status?: TradeFarmingStatus; /** * * @type {Array} * @memberof TradeFarmingInformation */ levels?: Array; /** * * @type {number} * @memberof TradeFarmingInformation */ startTime?: number; /** * * @type {number} * @memberof TradeFarmingInformation */ endTime?: number; /** * * @type {number} * @memberof TradeFarmingInformation */ currentTradingVolume?: number; } /** * Check if a given object implements the TradeFarmingInformation interface. */ export declare function instanceOfTradeFarmingInformation(value: object): boolean; export declare function TradeFarmingInformationFromJSON(json: any): TradeFarmingInformation; export declare function TradeFarmingInformationFromJSONTyped(json: any, ignoreDiscriminator: boolean): TradeFarmingInformation; export declare function TradeFarmingInformationToJSON(value?: TradeFarmingInformation | null): any;