/** * 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 { FarmingStatus } from './FarmingStatus'; /** * * @export * @interface FarmingState */ export interface FarmingState { /** * * @type {FarmingStatus} * @memberof FarmingState */ status?: FarmingStatus; /** * * @type {number} * @memberof FarmingState */ startTime?: number; /** * * @type {number} * @memberof FarmingState */ endTime?: number; /** * * @type {number} * @memberof FarmingState */ reward?: number; } /** * Check if a given object implements the FarmingState interface. */ export declare function instanceOfFarmingState(value: object): boolean; export declare function FarmingStateFromJSON(json: any): FarmingState; export declare function FarmingStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): FarmingState; export declare function FarmingStateToJSON(value?: FarmingState | null): any;