Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Club ¶
type Club struct { ID int `json:"id"` Name string `json:"name"` Image string `json:"image"` Information string `json:"information"` Category string `json:"category"` Type string `json:"type"` Date time.Time `json:"date"` Admins []Admin `json:"admins"` Member Member `json:"member"` Picture Picture `json:"picture"` Related Related `json:"related"` }
Club represents the main model for MyAnimeList clubs information.
type List ¶
type List struct { ID int `json:"id"` Name string `json:"name"` Image string `json:"image"` Summary string `json:"summary"` Username string `json:"username"` Member int `json:"member"` LastCommentDate time.Time `json:"last_comment_date"` LastCommentUser string `json:"last_comment_user"` LastPost string `json:"last_post"` }
List represents the main model for MyAnimeList clubs list.
type Picture ¶
type Picture struct { Count int `json:"count"` Pictures []SimplePicture `json:"pictures"` }
Picture represents club picture stats.
type Related ¶
type Related struct { Anime []common.IDName `json:"anime"` Manga []common.IDName `json:"manga"` Character []common.IDName `json:"character"` }
Related represents club relations.
Click to show internal directories.
Click to hide internal directories.