UNPKG

kucoin-universal-sdk

Version:
46 lines (45 loc) 1.16 kB
import { RestResponse } from '../../../model/common'; import { Response } from '../../../internal/interfaces/serializable'; export declare class GetTransferQuotasResp implements Response<RestResponse> { /** * 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; /** * Funds available to transfer. */ transferable: string; /** * Private constructor, please use the corresponding static methods to construct the object. */ private constructor(); /** * common response */ commonResponse?: RestResponse; setCommonResponse(response: RestResponse): void; /** * Convert the object to a JSON string. */ toJson(): string; /** * Create an object from a JSON string. */ static fromJson(input: string): GetTransferQuotasResp; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): GetTransferQuotasResp; }