UNPKG

kucoin-universal-sdk

Version:
32 lines (31 loc) 917 B
import { Serializable } from '../../../internal/interfaces/serializable'; export declare class GetPublicFundingHistoryData implements Serializable { /** * Symbol of the contract. Please refer to [Get Symbol endpoint: symbol](https://www.kucoin.com/docs-new/api-3470220) */ symbol: string; /** * Funding rate */ fundingRate: number; /** * Time point (milliseconds) */ timepoint: number; /** * 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): GetPublicFundingHistoryData; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): GetPublicFundingHistoryData; }