kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
52 lines (51 loc) • 1.15 kB
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetKYCStatusListItems implements Serializable {
/**
* client uid
*/
clientUid: number;
/**
* KYC status
*/
status: GetKYCStatusListItems.StatusEnum;
/**
* Reject Reason
*/
rejectReason?: 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): GetKYCStatusListItems;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetKYCStatusListItems;
}
export declare namespace GetKYCStatusListItems {
enum StatusEnum {
/**
* KYC information not submitted
*/
NONE,
/**
* In progress
*/
PROCESS,
/**
* Passed
*/
PASS,
/**
* Rejected
*/
REJECT
}
}