kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
57 lines (56 loc) • 1.39 kB
TypeScript
import { GetAllCurrenciesDataChains } from './model_get_all_currencies_data_chains';
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetAllCurrenciesData implements Serializable {
/**
* A unique currency code that will never change
*/
currency: string;
/**
* Currency name; will change after renaming
*/
name: string;
/**
* Full currency name; will change after renaming
*/
fullName: string;
/**
* Currency precision
*/
precision: number;
/**
* Number of block confirmations
*/
confirms: number;
/**
* Contract address
*/
contractAddress: string;
/**
* Margin support or not
*/
isMarginEnabled: boolean;
/**
* Debit support or not
*/
isDebitEnabled: boolean;
/**
* Chain list
*/
chains: Array<GetAllCurrenciesDataChains>;
/**
* 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): GetAllCurrenciesData;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetAllCurrenciesData;
}