UNPKG

kucoin-universal-sdk

Version:
94 lines (93 loc) 1.93 kB
import { RestResponse } from '../../../model/common'; import { Response } from '../../../internal/interfaces/serializable'; export declare class FuturesAccountTransferOutResp implements Response<RestResponse> { /** * Transfer order ID */ applyId: string; /** * Business number */ bizNo: string; /** * Pay account type */ payAccountType: string; /** * Pay account sub type */ payTag: string; /** * User remark */ remark: string; /** * Receive account type */ recAccountType: string; /** * Receive account sub type */ recTag: string; /** * Receive account tx remark */ recRemark: string; /** * Receive system */ recSystem: string; /** * Status:APPLY, PROCESSING, PENDING_APPROVAL, APPROVED, REJECTED, PENDING_CANCEL, CANCEL, SUCCESS */ status: string; /** * Currency */ currency: string; /** * Transfer amount */ amount: string; /** * Transfer fee */ fee: string; /** * Serial number */ sn: number; /** * Fail Reason */ reason: string; /** * Create time */ createdAt: number; /** * Update time */ updatedAt: number; /** * Private constructor, please use the corresponding static methods to construct the object. */ private constructor(); /** * common response */ commonResponse?: RestResponse; setCommonResponse(response: RestResponse): void; /** * Convert the object to a JSON string. */ toJson(): string; /** * Create an object from a JSON string. */ static fromJson(input: string): FuturesAccountTransferOutResp; /** * Create an object from Js Object. */ static fromObject(jsonObject: Object): FuturesAccountTransferOutResp; }