|
@@ -10,13 +10,13 @@ type ScenesDataType struct {
|
|
|
OssPath string `json:"ossPath"`
|
|
|
} `json:"backgroundMusic"`
|
|
|
CatalogRoot []struct {
|
|
|
- Children []any `json:"children"`
|
|
|
- ID string `json:"id"`
|
|
|
- Name string `json:"name"`
|
|
|
+ Children []any `json:"children"`
|
|
|
+ ID interface{} `json:"id"`
|
|
|
+ Name string `json:"name"`
|
|
|
} `json:"catalogRoot"`
|
|
|
Catalogs []struct {
|
|
|
- ID string `json:"id"`
|
|
|
- Name string `json:"name"`
|
|
|
+ ID interface{} `json:"id"`
|
|
|
+ Name string `json:"name"`
|
|
|
} `json:"catalogs"`
|
|
|
CoverInfo struct {
|
|
|
CoverImageInWay int64 `json:"coverImageInWay"`
|
|
@@ -59,7 +59,7 @@ type ScenesDataType struct {
|
|
|
Repeat bool `json:"repeat"`
|
|
|
} `json:"explanation"`
|
|
|
FirstScene struct {
|
|
|
- Category int64 `json:"category"`
|
|
|
+ Category interface{} `json:"category"`
|
|
|
CustomMask struct {
|
|
|
Earth struct {
|
|
|
Antidistorted bool `json:"antidistorted"`
|
|
@@ -131,7 +131,7 @@ type ScenesDataType struct {
|
|
|
Phone string `json:"phone"`
|
|
|
} `json:"phoneInfo"`
|
|
|
Secne struct {
|
|
|
- Category string `json:"category"`
|
|
|
+ Category interface{} `json:"category"`
|
|
|
CustomMask struct {
|
|
|
Earth struct {
|
|
|
Antidistorted bool `json:"antidistorted"`
|
|
@@ -196,7 +196,7 @@ type ScenesDataType struct {
|
|
|
RemindTime int64 `json:"remindTime"`
|
|
|
SceneIndex string `json:"sceneIndex"`
|
|
|
Scenes []struct {
|
|
|
- Category string `json:"category"`
|
|
|
+ Category interface{} `json:"category"`
|
|
|
CustomMask struct {
|
|
|
Earth struct {
|
|
|
Antidistorted bool `json:"antidistorted"`
|