Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Anime ¶
type Anime struct { Rank int `json:"rank"` Title string `json:"title"` Image string `json:"image"` ID int `json:"id"` Type string `json:"type"` Episode int `json:"episode"` StartDate string `json:"startDate"` EndDate string `json:"endDate"` Member int `json:"member"` Score float64 `json:"score"` }
Anime represents the main model for MyAnimeList top anime list.
type Character ¶
type Character struct { Rank int `json:"rank"` ID int `json:"id"` Name string `json:"name"` JapaneseName string `json:"japaneseName"` Image string `json:"image"` Favorite int `json:"favorite"` Animeography []Ography `json:"animeography"` Mangaography []Ography `json:"mangaography"` }
Character represents the main model for MyAnimeList top character list.
type Manga ¶
type Manga struct { Rank int `json:"rank"` Title string `json:"title"` Image string `json:"image"` ID int `json:"id"` Type string `json:"type"` Volume int `json:"volume"` StartDate string `json:"startDate"` EndDate string `json:"endDate"` Member int `json:"member"` Score float64 `json:"score"` }
Manga represents the main model for MyAnimeList top manga list.
type People ¶
type People struct { Rank int `json:"rank"` ID int `json:"id"` Name string `json:"name"` JapaneseName string `json:"japaneseName"` Image string `json:"image"` Birthday string `json:"birthday"` Favorite int `json:"favorite"` }
People represents the main model for MyAnimeList top people list.
Click to show internal directories.
Click to hide internal directories.