aboutsummaryrefslogtreecommitdiff
path: root/manga_types.go
diff options
context:
space:
mode:
Diffstat (limited to 'manga_types.go')
-rw-r--r--manga_types.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/manga_types.go b/manga_types.go
index d4c44a6..85a2af8 100644
--- a/manga_types.go
+++ b/manga_types.go
@@ -69,9 +69,12 @@ type MangaRecommendation struct {
}
type Author struct {
- Id int `json:"id"`
- FirstName string `json:"first_name"`
- LastName string `json:"last_name"`
+ Details struct {
+ Id int `json:"id"`
+ FirstName string `json:"first_name"`
+ LastName string `json:"last_name"`
+ } `json:"node"`
+ Role string `json:"role"`
}
type MangaListStatus struct {