12 lines
454 B
Go
12 lines
454 B
Go
|
|
package binancedto
|
||
|
|
|
||
|
|
import "github.com/shopspring/decimal"
|
||
|
|
|
||
|
|
type BinanceTransfer struct {
|
||
|
|
Type string `json:"type" content:"枚举 MAIN_UMFUTURE-现货到u合约"`
|
||
|
|
Asset string `json:"asset" content:"币种"`
|
||
|
|
Amount decimal.Decimal `json:"amount" content:"数量"`
|
||
|
|
FromSymbol string `json:"fromSymbol" content:"转出币种"`
|
||
|
|
ToSymbol string `json:"toSymbol" content:"转入币种"`
|
||
|
|
}
|