UNPKG

kucoin-universal-sdk

Version:
64 lines (63 loc) 1.34 kB
import { Serializable } from '../../../internal/interfaces/serializable'; export declare class GetWithdrawalHistoryOldItems implements Serializable { /** * Currency */ currency?: string; /** * Database record creation time */ createAt?: number; /** * Withdrawal amount */ amount?: string; /** * Withdrawal address */ address?: string; /** * Wallet Txid */ walletTxId?: string; /** * Internal deposit or not */ isInner?: boolean; /** * Status */ status?: GetWithdrawalHistoryOldItems.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): GetWithdrawalHistoryOldItems; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): GetWithdrawalHistoryOldItems; } export declare namespace GetWithdrawalHistoryOldItems { enum StatusEnum { /** * */ PROCESSING, /** * */ SUCCESS, /** * */ FAILURE } }