added started and completed at structs

This commit is contained in:
John O'Keefe 2024-07-27 12:57:36 -04:00
parent 65c12472f1
commit 5035712402

View File

@ -64,6 +64,16 @@ type MediaList struct {
} `json:"nextAiringEpisode"`
} `json:"media"`
Status string `json:"status"`
StartedAt struct {
Year int `json:"year"`
Month int `json:"month"`
Day int `json:"day"`
} `json:"startedAt"`
CompletedAt struct {
Year int `json:"year"`
Month int `json:"month"`
Day int `json:"day"`
} `json:"completedAt"`
Notes string `json:"notes"`
Progress int `json:"progress"`
Score int `json:"score"`