kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
40 lines (39 loc) • 1.14 kB
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetSpotActualFeeData implements Serializable {
/**
* 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 symbol
*/
takerFeeRate: string;
/**
* Actual maker fee rate of the symbol
*/
makerFeeRate: string;
/**
* Buy tax rate; this field is visible to users in certain countries
*/
sellTaxRate?: string;
/**
* Sell tax rate; this field is visible to users in certain countries
*/
buyTaxRate?: string;
/**
* Private constructor, please use the corresponding static methods to construct the object.
*/
private constructor();
/**
* Convert the object to a JSON string.
*/
toJson(): string;
/**
* Create an object from a JSON string.
*/
static fromJson(input: string): GetSpotActualFeeData;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetSpotActualFeeData;
}