kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
36 lines (35 loc) • 867 B
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetInterestHistoryItems implements Serializable {
/**
* currency
*/
currency: string;
/**
* Daily interest rate
*/
dayRatio: string;
/**
* Interest amount
*/
interestAmount: string;
/**
* Interest Timestamp
*/
createdTime: 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): GetInterestHistoryItems;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetInterestHistoryItems;
}