aboutsummaryrefslogtreecommitdiff
path: root/user/anime/animelist.structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'user/anime/animelist.structs.go')
-rw-r--r--user/anime/animelist.structs.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/user/anime/animelist.structs.go b/user/anime/animelist.structs.go
index d43b47b..d874f7b 100644
--- a/user/anime/animelist.structs.go
+++ b/user/anime/animelist.structs.go
@@ -27,3 +27,16 @@ type AnimeListRaw struct {
} `json:"data"`
Paging anime.ListPaging `json:"paging"`
}
+
+type UpdateAnimeData struct {
+ Status string `json:"status"`
+ IsRewatching bool `json:"is_rewatching"`
+ Score int `json:"score"`
+ EpWatched int `json:"num_watched_episodes"`
+ Priority int `json:"priority"`
+ TimesRewatched int `json:"num_times_rewatched"`
+ // NOTE: idk what RewatchValue is
+ RewatchValue int `json:"rewatch_value"`
+ Tags string `json:"tags"`
+ Comments string `json:"comments"`
+}