kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
60 lines (59 loc) • 1.25 kB
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetDepositHistoryOldItems implements Serializable {
/**
* Currency
*/
currency?: string;
/**
* Database record creation time
*/
createAt?: number;
/**
* Deposit amount
*/
amount?: string;
/**
* Wallet Txid
*/
walletTxId?: string;
/**
* Internal deposit or not
*/
isInner?: boolean;
/**
*
*/
status?: GetDepositHistoryOldItems.StatusEnum;
/**
* 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): GetDepositHistoryOldItems;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetDepositHistoryOldItems;
}
export declare namespace GetDepositHistoryOldItems {
enum StatusEnum {
/**
*
*/
PROCESSING,
/**
*
*/
SUCCESS,
/**
*
*/
FAILURE
}
}