os version

This commit is contained in:
jiangyong27 2024-09-02 15:16:52 +08:00
parent 378e33c9ad
commit 0ff9d091b7
1 changed files with 14 additions and 13 deletions

View File

@ -11,19 +11,20 @@ type BaseResponse struct {
}
type Request struct {
Channel string //安装包的渠道
Version string //安装包版本
Os string //手机系统类别 android、ioss
Ip string //客户端的外网ip
Ua string //客户端的user-agent
Brand string // 客户端手机品牌
Model string //客户端的手机型号NOH-AN00
Idfa string //客户端的广告idios时候有效
Paid string //客户端的广告idios时候有效百度特有
Oaid string //客户端的广告idandroid时有效
Imei string //设备唯一识别码
Extra map[string]string //其他额外数据
Active bool // 是否直接激活
Channel string //安装包的渠道
Version string //安装包版本
Os string //手机系统类别 android、ioss
Ip string //客户端的外网ip
Ua string //客户端的user-agent
Brand string // 客户端手机品牌
Model string //客户端的手机型号NOH-AN00
Idfa string //客户端的广告idios时候有效
Paid string //客户端的广告idios时候有效百度特有
Oaid string //客户端的广告idandroid时有效
Imei string //设备唯一识别码
OsVersion string //操作系统版本号
Extra map[string]string //其他额外数据
Active bool // 是否直接激活
}
type Result struct {