UNPKG

kucoin-universal-sdk

Version:
38 lines (37 loc) 1.12 kB
import { RestResponse } from '../../../model/common'; import { Response } from '../../../internal/interfaces/serializable'; export declare class GetFuturesActualFeeResp implements Response<RestResponse> { /** * The unique identity of the trading pair; will not change even if the trading pair is renamed */ symbol: string; /** * Actual taker fee rate of the trading pair */ takerFeeRate: string; /** * Actual maker fee rate of the trading pair */ makerFeeRate: string; /** * Private constructor, please use the corresponding static methods to construct the object. */ private constructor(); /** * common response */ commonResponse?: RestResponse; setCommonResponse(response: RestResponse): void; /** * Convert the object to a JSON string. */ toJson(): string; /** * Create an object from a JSON string. */ static fromJson(input: string): GetFuturesActualFeeResp; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): GetFuturesActualFeeResp; }