kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
52 lines (51 loc) • 1.22 kB
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetSpotSubAccountDetailMarginAccounts implements Serializable {
/**
* Currency
*/
currency?: string;
/**
* Total funds in an account.
*/
balance?: string;
/**
* Funds available to withdraw or trade.
*/
available?: string;
/**
* Funds on hold (not available for use).
*/
holds?: string;
/**
* Calculated on this currency.
*/
baseCurrency?: string;
/**
* The base currency price.
*/
baseCurrencyPrice?: string;
/**
* The base currency amount.
*/
baseAmount?: string;
/**
*
*/
tag?: 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): GetSpotSubAccountDetailMarginAccounts;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetSpotSubAccountDetailMarginAccounts;
}