kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
51 lines (50 loc) • 1.57 kB
TypeScript
import 'reflect-metadata';
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetWithdrawalHistoryByIdReq implements Serializable {
/**
* withdrawal ID
*/
withdrawalId?: string;
/**
* Private constructor, please use the corresponding static methods to construct the object.
*/
private constructor();
/**
* Creates a new instance of the `GetWithdrawalHistoryByIdReq` class.
* The builder pattern allows step-by-step construction of a `GetWithdrawalHistoryByIdReq` object.
*/
static builder(): GetWithdrawalHistoryByIdReqBuilder;
/**
* Creates a new instance of the `GetWithdrawalHistoryByIdReq` class with the given data.
*/
static create(data: {
/**
* withdrawal ID
*/
withdrawalId?: string;
}): GetWithdrawalHistoryByIdReq;
/**
* Convert the object to a JSON string.
*/
toJson(): string;
/**
* Create an object from a JSON string.
*/
static fromJson(input: string): GetWithdrawalHistoryByIdReq;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetWithdrawalHistoryByIdReq;
}
export declare class GetWithdrawalHistoryByIdReqBuilder {
readonly obj: GetWithdrawalHistoryByIdReq;
constructor(obj: GetWithdrawalHistoryByIdReq);
/**
* withdrawal ID
*/
setWithdrawalId(value: string): GetWithdrawalHistoryByIdReqBuilder;
/**
* Get the final object.
*/
build(): GetWithdrawalHistoryByIdReq;
}