UNPKG

kucoin-universal-sdk

Version:
50 lines (49 loc) 1.49 kB
import { Serializable } from '../../../internal/interfaces/serializable'; export declare class GetKYCStatusReq implements Serializable { /** * Client uid, Use commas to separate multiple UIDs */ clientUids?: string; /** * Private constructor, please use the corresponding static methods to construct the object. */ private constructor(); /** * Creates a new instance of the `GetKYCStatusReq` class. * The builder pattern allows step-by-step construction of a `GetKYCStatusReq` object. */ static builder(): GetKYCStatusReqBuilder; /** * Creates a new instance of the `GetKYCStatusReq` class with the given data. */ static create(data: { /** * Client uid, Use commas to separate multiple UIDs */ clientUids?: string; }): GetKYCStatusReq; /** * Convert the object to a JSON string. */ toJson(): string; /** * Create an object from a JSON string. */ static fromJson(input: string): GetKYCStatusReq; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): GetKYCStatusReq; } export declare class GetKYCStatusReqBuilder { readonly obj: GetKYCStatusReq; constructor(obj: GetKYCStatusReq); /** * Client uid, Use commas to separate multiple UIDs */ setClientUids(value: string): GetKYCStatusReqBuilder; /** * Get the final object. */ build(): GetKYCStatusReq; }