kucoin-universal-sdk
Version:
Official KuCoin Universal SDK.
54 lines (53 loc) • 1.58 kB
TypeScript
import { RestResponse } from '../../../model/common';
import { Response } from '../../../internal/interfaces/serializable';
export declare class AddDepositAddressV3Resp implements Response<RestResponse> {
/**
* 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;
/**
* The chainId of currency
*/
chainId: string;
/**
* Deposit account type: MAIN (funding account), TRADE (spot trading account)
*/
to: string;
/**
* Expiration time; Lightning network expiration time; this field is not applicable to non-Lightning networks
*/
expirationDate: number;
/**
* currency
*/
currency: string;
/**
* The chainName of currency
*/
chainName: string;
/**
* 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): AddDepositAddressV3Resp;
/**
* Create an object from Js Object.
*/
static fromObject(jsonObject: Object): AddDepositAddressV3Resp;
}