aboutsummaryrefslogtreecommitdiff
path: root/user/manga/mangalist.structs.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2022-02-28 05:35:39 +0000
committerGitHub <noreply@github.com>2022-02-28 05:35:39 +0000
commit06425ac756f916bca10d0f8797cf575a77dcf69d (patch)
tree7b4df51906c714f83a2bdce710e218a5cbb6672e /user/manga/mangalist.structs.go
parentf44303ee9de8da4e330116d2c6e6048d59b52526 (diff)
parent38f7861cc533081aba7458ef52a25acdeddd1f16 (diff)
Merge pull request #7 from MikunoNaka/user-mangalist
Added functionality to update manga lists
Diffstat (limited to 'user/manga/mangalist.structs.go')
-rw-r--r--user/manga/mangalist.structs.go51
1 files changed, 51 insertions, 0 deletions
diff --git a/user/manga/mangalist.structs.go b/user/manga/mangalist.structs.go
new file mode 100644
index 0000000..0ea7d70
--- /dev/null
+++ b/user/manga/mangalist.structs.go
@@ -0,0 +1,51 @@
+/* MAL2Go - MyAnimeList V2 API wrapper for Go
+ * Copyright (C) 2022 Vidhu Kant Sharma <vidhukant@protonmail.ch>
+
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>. */
+
+package manga
+
+import (
+ "github.com/MikunoNaka/MAL2Go/util"
+ "github.com/MikunoNaka/MAL2Go/manga"
+)
+
+type Manga manga.Manga
+
+type MangaListRaw struct {
+ Data []struct {
+ Manga Manga `json:"node"`
+ ListStatus manga.ListStatus `json:"list_status"`
+ } `json:"data"`
+ Paging util.ListPaging `json:"paging"`
+}
+
+type MangaList struct {
+ Mangas []Manga
+ Paging util.ListPaging
+}
+
+type UpdateMangaData struct {
+ Status string
+ IsRereading bool
+ Score int
+ VolumesRead int
+ ChaptersRead int
+ Priority int
+ TimesReread int
+ // NOTE: idk what RereadValue is
+ RereadValue int
+ Tags string
+ Comments string
+}