- package md
-
- type BihaiOrder struct {
- HasMore bool `json:"has_more"`
- NextId int `json:"next_id"`
- List []struct {
- OrderId string `json:"order_id"`
- MarketId string `json:"market_id"`
- CreatedAt string `json:"created_at"`
- Status string `json:"status"`
- Price string `json:"price"`
- LinkId string `json:"link_id"`
- PaySystems int `json:"pay_systems"`
- Ext struct {
- QwExt string `json:"qw_ext"`
- } `json:"ext"`
- } `json:"list"`
- }
|