retry.go 345 B

1234567891011121314151617
  1. package offer
  2. const (
  3. ActionActive = "active"
  4. )
  5. type Retry struct {
  6. Action string `json:"action,omitempty"`
  7. Data *Data `json:"data,omitempty"`
  8. }
  9. type Data struct {
  10. OS string `json:"os,omitempty"`
  11. IMEI string `json:"imei,omitempty"`
  12. Androidid string `json:"androidid,omitempty"`
  13. Mac string `json:"mac,omitempty"`
  14. }