kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
32 lines (31 loc) • 785 B
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class BatchSwitchMarginModeErrors implements Serializable {
/**
* Error code
*/
code?: string;
/**
* Error message
*/
msg?: string;
/**
* Symbol
*/
symbol?: 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): BatchSwitchMarginModeErrors;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): BatchSwitchMarginModeErrors;
}