UNPKG

kucoin-universal-sdk

Version:
88 lines (87 loc) 1.85 kB
import { Serializable } from '../../../internal/interfaces/serializable'; export declare class GetDepositHistoryItems implements Serializable { /** * Currency */ currency?: string; /** * The chainName of currency */ chain?: string; /** * Status */ status?: GetDepositHistoryItems.StatusEnum; /** * Deposit address */ address?: string; /** * Address remark. If there’s no remark, it is empty. */ memo?: string; /** * Internal deposit or not */ isInner?: boolean; /** * Deposit amount */ amount?: string; /** * Fees charged for deposit */ fee?: string; /** * Wallet Txid */ walletTxId?: string; /** * Database record creation time */ createdAt?: number; /** * Update time of the database record */ updatedAt?: number; /** * remark */ remark?: string; /** * Whether there is any debt.A quick rollback will cause the deposit to fail. If the deposit fails, you will need to repay the balance. */ arrears?: boolean; /** * 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): GetDepositHistoryItems; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): GetDepositHistoryItems; } export declare namespace GetDepositHistoryItems { enum StatusEnum { /** * */ PROCESSING, /** * */ SUCCESS, /** * */ FAILURE } }