kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
50 lines (49 loc) • 1.46 kB
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetWithdrawDetailReq 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 `GetWithdrawDetailReq` class.
* The builder pattern allows step-by-step construction of a `GetWithdrawDetailReq` object.
*/
static builder(): GetWithdrawDetailReqBuilder;
/**
* Creates a new instance of the `GetWithdrawDetailReq` class with the given data.
*/
static create(data: {
/**
* Withdrawal ID
*/
withdrawalId?: string;
}): GetWithdrawDetailReq;
/**
* Convert the object to a JSON string.
*/
toJson(): string;
/**
* Create an object from a JSON string.
*/
static fromJson(input: string): GetWithdrawDetailReq;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetWithdrawDetailReq;
}
export declare class GetWithdrawDetailReqBuilder {
readonly obj: GetWithdrawDetailReq;
constructor(obj: GetWithdrawDetailReq);
/**
* Withdrawal ID
*/
setWithdrawalId(value: string): GetWithdrawDetailReqBuilder;
/**
* Get the final object.
*/
build(): GetWithdrawDetailReq;
}