|
@@ -26,6 +26,9 @@ type AppVersion struct {
|
|
Url string `json:"url"`
|
|
Url string `json:"url"`
|
|
Platform string `json:"platform"`
|
|
Platform string `json:"platform"`
|
|
Thumbnail string `json:"thumbnail"`
|
|
Thumbnail string `json:"thumbnail"`
|
|
|
|
+ Desc string `json:"desc"`
|
|
|
|
+ AppType string `json:"appType"`
|
|
|
|
+ InstCount int `json:"instCount"`
|
|
}
|
|
}
|
|
|
|
|
|
type Version struct {
|
|
type Version struct {
|
|
@@ -38,6 +41,9 @@ type Version struct {
|
|
Url string `json:"url"`
|
|
Url string `json:"url"`
|
|
Platform string `json:"platform"`
|
|
Platform string `json:"platform"`
|
|
Thumbnail string `json:"thumbnail"`
|
|
Thumbnail string `json:"thumbnail"`
|
|
|
|
+ Desc string `json:"desc"`
|
|
|
|
+ AppType string `json:"appType"`
|
|
|
|
+ InstCount int `json:"instCount"`
|
|
}
|
|
}
|
|
|
|
|
|
type App struct {
|
|
type App struct {
|
|
@@ -50,7 +56,7 @@ type App struct {
|
|
Tags string `json:"tags"`
|
|
Tags string `json:"tags"`
|
|
Desc string `json:"desc"`
|
|
Desc string `json:"desc"`
|
|
Entry string `json:"entry"`
|
|
Entry string `json:"entry"`
|
|
- Type string `json:"type"`
|
|
|
|
|
|
+ AppType string `json:"appType"`
|
|
Key string `json:"key"`
|
|
Key string `json:"key"`
|
|
InstCount int `json:"instCount"`
|
|
InstCount int `json:"instCount"`
|
|
}
|
|
}
|