kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
62 lines (61 loc) • 1.63 kB
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetDepositDetailReq implements Serializable {
/**
* Currency
*/
currency?: string;
/**
* Hash Value
*/
hash?: string;
/**
* Private constructor, please use the corresponding static methods to construct the object.
*/
private constructor();
/**
* Creates a new instance of the `GetDepositDetailReq` class.
* The builder pattern allows step-by-step construction of a `GetDepositDetailReq` object.
*/
static builder(): GetDepositDetailReqBuilder;
/**
* Creates a new instance of the `GetDepositDetailReq` class with the given data.
*/
static create(data: {
/**
* Currency
*/
currency?: string;
/**
* Hash Value
*/
hash?: string;
}): GetDepositDetailReq;
/**
* Convert the object to a JSON string.
*/
toJson(): string;
/**
* Create an object from a JSON string.
*/
static fromJson(input: string): GetDepositDetailReq;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetDepositDetailReq;
}
export declare class GetDepositDetailReqBuilder {
readonly obj: GetDepositDetailReq;
constructor(obj: GetDepositDetailReq);
/**
* Currency
*/
setCurrency(value: string): GetDepositDetailReqBuilder;
/**
* Hash Value
*/
setHash(value: string): GetDepositDetailReqBuilder;
/**
* Get the final object.
*/
build(): GetDepositDetailReq;
}