智盟项目
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

19 satır
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. }