kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
76 lines (75 loc) • 1.6 kB
TypeScript
import { Serializable } from '../../../internal/interfaces/serializable';
export declare class GetFuturesAccountTransferOutLedgerItems implements Serializable {
/**
* Transfer order ID
*/
applyId?: string;
/**
* Currency
*/
currency?: string;
/**
* Receive account tx remark
*/
recRemark?: string;
/**
* Receive system
*/
recSystem?: string;
/**
* Status PROCESSING, SUCCESS, FAILURE
*/
status?: GetFuturesAccountTransferOutLedgerItems.StatusEnum;
/**
* Transaction amount
*/
amount?: string;
/**
* Reason for the failure
*/
reason?: string;
/**
* Offset
*/
offset?: number;
/**
* Request application time
*/
createdAt?: number;
/**
* User remark
*/
remark?: string;
/**
* 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): GetFuturesAccountTransferOutLedgerItems;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): GetFuturesAccountTransferOutLedgerItems;
}
export declare namespace GetFuturesAccountTransferOutLedgerItems {
enum StatusEnum {
/**
*
*/
PROCESSING,
/**
*
*/
SUCCESS,
/**
*
*/
FAILURE
}
}