kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
44 lines (43 loc) • 916 B
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetSpotSubAccountsSummaryV1Data implements Serializable {
/**
*
*/
userId: string;
/**
*
*/
uid: number;
/**
*
*/
subName: string;
/**
*
*/
type: number;
/**
*
*/
remarks: string;
/**
* Sub-account Permission
*/
access: 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): GetSpotSubAccountsSummaryV1Data;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetSpotSubAccountsSummaryV1Data;
}