UNPKG

kucoin-universal-sdk

Version:
92 lines (91 loc) 1.94 kB
import { Serializable } from '../../../internal/interfaces/serializable'; export declare class GetDepositListData implements Serializable { /** * deposit uid */ uid: number; /** * hash */ hash: string; /** * Deposit address */ address: string; /** * Address remark. If there’s no remark, it is empty. When you withdraw from other platforms to KuCoin, you need to fill in memo(tag). Be careful: If you do not fill in memo(tag), your deposit may not be available. */ memo: string; /** * Deposit amount */ amount: string; /** * Fees charged for deposit */ fee: string; /** * currency */ currency: string; /** * Internal deposit or not */ isInner: boolean; /** * Wallet Txid */ walletTxId: string; /** * Status. Available value: PROCESSING, SUCCESS, FAILURE */ status: GetDepositListData.StatusEnum; /** * Remark */ remark: string; /** * Chain name of currency */ chain: string; /** * Database record creation time */ createdAt: number; /** * Update time of the database record */ updatedAt: number; /** * 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): GetDepositListData; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): GetDepositListData; } export declare namespace GetDepositListData { enum StatusEnum { /** * */ PROCESSING, /** * */ SUCCESS, /** * */ FAILURE } }