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