mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
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"`
|
|
}
|