25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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"`
- }
|