UNPKG

kucoin-universal-sdk

Version:
44 lines (43 loc) 973 B
import { Serializable } from '../../../internal/interfaces/serializable'; export declare class GetETFInfoData implements Serializable { /** * ETF Currency */ currency: string; /** * Net worth */ netAsset: string; /** * Target leverage */ targetLeverage: string; /** * Actual leverage */ actualLeverage: string; /** * The amount of currency issued */ issuedSize: string; /** * Basket information */ basket: 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): GetETFInfoData; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): GetETFInfoData; }