Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Bill ¶
type Bill struct { BillID string `json:"billId"` Ccy string `json:"ccy"` Bal okex.JSONFloat64 `json:"bal"` BalChg okex.JSONFloat64 `json:"balChg"` Type okex.BillType `json:"type,string"` TS okex.JSONTime `json:"ts"` }
type Currency ¶
type Currency struct { Ccy string `json:"ccy"` Name string `json:"name"` LogoLink string `json:"logoLink"` Chain string `json:"chain"` MinDep string `json:"minDep"` MinWd string `json:"minWd"` MaxWd string `json:"maxWd"` MinFee string `json:"minFee"` MaxFee string `json:"maxFee"` CanDep bool `json:"canDep"` CanWd bool `json:"canWd"` CanInternal bool `json:"canInternal"` WdQuota string `json:"wdQuota"` UsedWdQuota string `json:"usedWdQuota"` DepQuotaFixed string `json:"depQuotaFixed"` UsedDepQuotaFixed string `json:"usedDepQuotaFixed"` }
type DepositAddress ¶
type DepositAddress struct { Addr string `json:"addr"` Tag string `json:"tag,omitempty"` Memo string `json:"memo,omitempty"` PmtID string `json:"pmtId,omitempty"` Ccy string `json:"ccy"` Chain string `json:"chain"` CtAddr string `json:"ctAddr"` Selected bool `json:"selected"` To okex.AccountType `json:"to,string"` TS okex.JSONTime `json:"ts"` }
type DepositHistory ¶
type DepositHistory struct { Ccy string `json:"ccy"` Chain string `json:"chain"` TxID string `json:"txId"` From string `json:"from"` To string `json:"to"` DepId string `json:"depId"` Amt okex.JSONFloat64 `json:"amt"` State okex.DepositState `json:"state,string"` ActualDepBlkConfirm string `json:"actualDepBlkConfirm"` TS okex.JSONTime `json:"ts"` }
type PiggyBank ¶
type PiggyBank struct { Ccy string `json:"ccy"` Amt okex.JSONFloat64 `json:"amt"` Side okex.ActionType `json:"side,string"` }
type PiggyBankBalance ¶
type PiggyBankBalance struct { Ccy string `json:"ccy"` Amt okex.JSONFloat64 `json:"amt"` Earnings okex.JSONFloat64 `json:"earnings"` }
type Transfer ¶
type Transfer struct { TransID string `json:"transId"` Ccy string `json:"ccy"` Amt okex.JSONFloat64 `json:"amt"` From okex.AccountType `json:"from,string"` To okex.AccountType `json:"to,string"` }
type TransferState ¶ added in v1.4.7
type TransferState struct { TransID string `json:"transId"` Ccy string `json:"ccy"` Amt okex.JSONFloat64 `json:"amt"` Type string `json:"type"` From okex.AccountType `json:"from,string"` To okex.AccountType `json:"to,string"` SubAcct string `json:"subAcct"` State string `json:"state"` }
type Withdrawal ¶
type WithdrawalHistory ¶
type WithdrawalHistory struct { Ccy string `json:"ccy"` Chain string `json:"chain"` TxID string `json:"txId"` From string `json:"from"` To string `json:"to"` Tag string `json:"tag,omitempty"` PmtID string `json:"pmtId,omitempty"` Memo string `json:"memo,omitempty"` Amt okex.JSONFloat64 `json:"amt"` Fee okex.JSONInt64 `json:"fee"` WdID okex.JSONInt64 `json:"wdId"` State okex.WithdrawalState `json:"state,string"` TS okex.JSONTime `json:"ts"` }
Click to show internal directories.
Click to hide internal directories.