18 lines
345 B
Go
18 lines
345 B
Go
|
package offer
|
||
|
|
||
|
const (
|
||
|
ActionActive = "active"
|
||
|
)
|
||
|
|
||
|
type Retry struct {
|
||
|
Action string `json:"action,omitempty"`
|
||
|
Data *Data `json:"data,omitempty"`
|
||
|
}
|
||
|
|
||
|
type Data struct {
|
||
|
OS string `json:"os,omitempty"`
|
||
|
IMEI string `json:"imei,omitempty"`
|
||
|
Androidid string `json:"androidid,omitempty"`
|
||
|
Mac string `json:"mac,omitempty"`
|
||
|
}
|