Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var APIKeyID = ""
APIKeyID ...
View Source
var APIKeySecret = ""
APIKeySecret ...
Functions ¶
Types ¶
type Anime ¶
type Anime struct {
ID int `json:"id"`
MALID int `json:"idMal"`
Title struct {
Romaji string `json:"romaji"`
English string `json:"english"`
Native string `json:"native"`
} `json:"title"`
EpisodeCount int `json:"episodes"`
}
Anime ...
type AnimeList ¶
type AnimeList struct {
Lists []struct {
Name string `json:"name"`
Entries []*AnimeListItem `json:"entries"`
} `json:"lists"`
User struct {
ID int `json:"id"`
Name string `json:"name"`
} `json:"user"`
}
AnimeList ...
type AnimeListItem ¶
type AnimeListItem struct {
ID int `json:"id"`
Status string `json:"status"`
Score float64 `json:"score"`
ScoreRaw int `json:"scoreRaw"`
Progress int `json:"progress"`
Repeat int `json:"repeat"`
Private bool `json:"private"`
Notes string `json:"notes"`
Anime *Anime `json:"media"`
StartedAt struct {
Year interface{} `json:"year"`
Month interface{} `json:"month"`
Day interface{} `json:"day"`
} `json:"startedAt"`
CompletedAt struct {
Year interface{} `json:"year"`
Month interface{} `json:"month"`
Day interface{} `json:"day"`
} `json:"completedAt"`
UpdatedAt int `json:"updatedAt"`
CreatedAt int `json:"createdAt"`
}
AnimeListItem ...
Click to show internal directories.
Click to hide internal directories.