blob: ac6d2492b4e2c259a21e5e68586a6e06a1d460cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package object
// AppWidgetsAppImageUploadResponse struct.
type AppWidgetsAppImageUploadResponse struct {
Image string `json:"image"`
Hash string `json:"hash"`
}
// AppWidgetsGroupImageUploadResponse struct.
type AppWidgetsGroupImageUploadResponse struct {
Image string `json:"image"`
Hash string `json:"hash"`
}
// AppWidgetsImage struct.
type AppWidgetsImage struct {
ID string `json:"id"`
Type string `json:"type"`
Images []BaseImage `json:"images"`
}
|