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.
 
 
 

21 lines
368 B

package model
const (
// OwnerInstall is_activated=1.
OwnerInstall = 1
// OwnerUninstall is_activated=0.
OwnerUninstall = 0
)
// UpInfo .
type UpInfo struct {
Code int `json:"code"`
Data []*UpInfoGroup `json:"results"`
}
// UpInfoGroup .
type UpInfoGroup struct {
ID int64 `json:"id"`
Desc string `json:"desc"`
Mids []int64 `json:"mids"`
}