第三方api接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

order.go 894 B

3 months ago
1234567891011121314151617181920
  1. package t3
  2. type T3Order struct {
  3. SourceId string `json:"sourceId"`
  4. Amount int `json:"amount"`
  5. BusinessId string `json:"businessId"`
  6. CpaType string `json:"cpaType"`
  7. SpotUuid string `json:"spotUuid"`
  8. Uuid string `json:"uuid"`
  9. OrderAmount float64 `json:"orderAmount"`
  10. PayAmount float64 `json:"payAmount"`
  11. CreateTime int64 `json:"createTime"`
  12. Rate int `json:"rate"`
  13. ParticipationStatus int `json:"participationStatus"`
  14. FailReason string `json:"failReason"`
  15. ActivityUuid string `json:"activityUuid"`
  16. AttributionalFirstOrder bool `json:"attributionalFirstOrder"`
  17. UnionActivityUuid string `json:"unionActivityUuid"`
  18. RefundAmount int `json:"refundAmount"`
  19. }