From 5e01fb1297e25314184effe2c9f9fbbda0e512fb Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Wed, 23 Feb 2022 20:52:09 +0530 Subject: Pushing barebones manga package --- util/structs.go | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) (limited to 'util/structs.go') diff --git a/util/structs.go b/util/structs.go index b17f1f7..4eb6325 100644 --- a/util/structs.go +++ b/util/structs.go @@ -34,3 +34,49 @@ var DefaultFields []string = []string{ "related_manga", "recommendations", "studios", "statistics", } + +// contains previous/next page for anime list +// we don't actually need this. +// TODO: for compatibility's sake, keep this but also define methods +// to get the prev. and next page's elements automatically +type ListPaging struct { + NextPage string `json:"next"` + PrevPage string `json:"previous"` +} + +/* these structs are used + * both by anime and manga package */ +type Picture struct { + Medium string `json:"medium"` + Large string `json:"large"` +} + +type StatusStatistics struct { + Watching string `json:"watching"` + Completed string `json:"completed"` + OnHold string `json:"on_hold"` + Dropped string `json:"dropped"` + PlanToWatch string `json:"plan_to_watch"` +} + +type Genre struct { + Id int `json:"id"` + Name string `json:"name"` +} + +type DefaultListStatus struct { + Status string `json:"status"` + Score int `json:"score"` + StartDate string `json:"start_date"` + FinishDate string `json:"finish_date"` + Priority int `json:"priority"` + Tags string `json:"tags"` + Comments string `json:"comments"` + UpdatedAt string `json:"updated_at"` +} + +type AltTitles struct { + Synonyms []string `json:"synonyms"` + En string `json:"en"` + Ja string `json:"ja"` +} -- cgit v1.2.3