/** * 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 * @interface TradeFarmingLevel */ export interface TradeFarmingLevel { /** * * @type {number} * @memberof TradeFarmingLevel */ minUsdtAmount?: number; /** * * @type {number} * @memberof TradeFarmingLevel */ reward?: number; } /** * Check if a given object implements the TradeFarmingLevel interface. */ export declare function instanceOfTradeFarmingLevel(value: object): boolean; export declare function TradeFarmingLevelFromJSON(json: any): TradeFarmingLevel; export declare function TradeFarmingLevelFromJSONTyped(json: any, ignoreDiscriminator: boolean): TradeFarmingLevel; export declare function TradeFarmingLevelToJSON(value?: TradeFarmingLevel | null): any;