智盟项目
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

19 righe
476 B

  1. package md
  2. type BihaiOrder struct {
  3. HasMore bool `json:"has_more"`
  4. NextId int `json:"next_id"`
  5. List []struct {
  6. OrderId string `json:"order_id"`
  7. MarketId string `json:"market_id"`
  8. CreatedAt string `json:"created_at"`
  9. Status string `json:"status"`
  10. Price string `json:"price"`
  11. LinkId string `json:"link_id"`
  12. PaySystems int `json:"pay_systems"`
  13. Ext struct {
  14. QwExt string `json:"qw_ext"`
  15. } `json:"ext"`
  16. } `json:"list"`
  17. }